diff --git a/SYNTAX-REFERENCE.md b/SYNTAX-REFERENCE.md
index c0e8941bc..e55cf986a 100755
--- a/SYNTAX-REFERENCE.md
+++ b/SYNTAX-REFERENCE.md
@@ -2172,6 +2172,8 @@ Enum Values:
- PATCH
- PURGE
+
+ - Debug
diff --git a/nuclei-jsonschema.json b/nuclei-jsonschema.json
index f600fcc1a..b267f404a 100755
--- a/nuclei-jsonschema.json
+++ b/nuclei-jsonschema.json
@@ -614,11 +614,12 @@
"OPTIONS",
"TRACE",
"PATCH",
- "PURGE"
+ "PURGE",
+ "DEBUG"
],
"type": "string",
"title": "method is the HTTP request method",
- "description": "Method is the HTTP Request Method,enum=GET,enum=HEAD,enum=POST,enum=PUT,enum=DELETE,enum=CONNECT,enum=OPTIONS,enum=TRACE,enum=PATCH,enum=PURGE"
+ "description": "Method is the HTTP Request Method,enum=GET,enum=HEAD,enum=POST,enum=PUT,enum=DELETE,enum=CONNECT,enum=OPTIONS,enum=TRACE,enum=PATCH,enum=PURGE,enum=DEBUG"
},
"http.Request": {
"properties": {
diff --git a/v2/pkg/templates/templates_doc.go b/v2/pkg/templates/templates_doc.go
index 4abe1612d..024408d52 100644
--- a/v2/pkg/templates/templates_doc.go
+++ b/v2/pkg/templates/templates_doc.go
@@ -922,6 +922,7 @@ func init() {
"TRACE",
"PATCH",
"PURGE",
+ "Debug",
}
SignatureTypeHolderDoc.Type = "SignatureTypeHolder"