From 5c62e7a2961b6b0c4f97494f4d95737d912d5f2e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 4 May 2023 11:28:35 +0000 Subject: [PATCH] Auto Generate Syntax Docs + JSONSchema [Thu May 4 11:28:35 UTC 2023] :robot: --- SYNTAX-REFERENCE.md | 2 ++ nuclei-jsonschema.json | 3 ++- v2/pkg/templates/templates_doc.go | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/SYNTAX-REFERENCE.md b/SYNTAX-REFERENCE.md index d5f606f72..4aaae9113 100755 --- a/SYNTAX-REFERENCE.md +++ b/SYNTAX-REFERENCE.md @@ -2031,6 +2031,8 @@ Enum Values: - CAA - TLSA + + - ANY
diff --git a/nuclei-jsonschema.json b/nuclei-jsonschema.json index 78c917528..a89990929 100644 --- a/nuclei-jsonschema.json +++ b/nuclei-jsonschema.json @@ -399,7 +399,8 @@ "TXT", "AAAA", "CAA", - "TLSA" + "TLSA", + "ANY" ], "type": "string", "title": "type of DNS request to make", diff --git a/v2/pkg/templates/templates_doc.go b/v2/pkg/templates/templates_doc.go index 2a5506a1a..554780200 100644 --- a/v2/pkg/templates/templates_doc.go +++ b/v2/pkg/templates/templates_doc.go @@ -895,6 +895,7 @@ func init() { "AAAA", "CAA", "TLSA", + "ANY", } FILERequestDoc.Type = "file.Request"