diff --git a/SYNTAX-REFERENCE.md b/SYNTAX-REFERENCE.md index 9222e34a..7fa62c5f 100755 --- a/SYNTAX-REFERENCE.md +++ b/SYNTAX-REFERENCE.md @@ -2750,6 +2750,8 @@ Enum Values: - TLSA - ANY + + - SRV
diff --git a/nuclei-jsonschema.json b/nuclei-jsonschema.json index 9e14e531..46e1ab98 100644 --- a/nuclei-jsonschema.json +++ b/nuclei-jsonschema.json @@ -84,7 +84,8 @@ "AAAA", "CAA", "TLSA", - "ANY" + "ANY", + "SRV" ], "title": "type of DNS request to make", "description": "Type is the type of DNS request to make" diff --git a/pkg/templates/templates_doc.go b/pkg/templates/templates_doc.go index dbd865c4..42fa25b9 100644 --- a/pkg/templates/templates_doc.go +++ b/pkg/templates/templates_doc.go @@ -1166,6 +1166,7 @@ func init() { "CAA", "TLSA", "ANY", + "SRV", } FILERequestDoc.Type = "file.Request"