mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 23:25:27 +00:00
Auto Generate Syntax Docs + JSONSchema [Fri Apr 15 13:31:14 UTC 2022] 🤖
This commit is contained in:
parent
5b9f7cdaa4
commit
ef18886d39
@ -1363,6 +1363,32 @@ IterateAll iterates all the values extracted from internal extractors
|
|||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
|
<div class="dd">
|
||||||
|
|
||||||
|
<code>digest-username</code> <i>string</i>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="dt">
|
||||||
|
|
||||||
|
DigestAuthUsername specifies the username for digest authentication
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div class="dd">
|
||||||
|
|
||||||
|
<code>digest-password</code> <i>string</i>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="dt">
|
||||||
|
|
||||||
|
DigestAuthPassword specifies the password for digest authentication
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -850,6 +850,16 @@
|
|||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"title": "iterate all the values",
|
"title": "iterate all the values",
|
||||||
"description": "Iterates all the values extracted from internal extractors"
|
"description": "Iterates all the values extracted from internal extractors"
|
||||||
|
},
|
||||||
|
"digest-username": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "specifies the username for digest authentication",
|
||||||
|
"description": "Optional parameter which specifies the username for digest auth"
|
||||||
|
},
|
||||||
|
"digest-password": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "specifies the password for digest authentication",
|
||||||
|
"description": "Optional parameter which specifies the password for digest auth"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@ -390,7 +390,7 @@ func init() {
|
|||||||
Value: "HTTP response headers in name:value format",
|
Value: "HTTP response headers in name:value format",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
HTTPRequestDoc.Fields = make([]encoder.Doc, 29)
|
HTTPRequestDoc.Fields = make([]encoder.Doc, 31)
|
||||||
HTTPRequestDoc.Fields[0].Name = "matchers"
|
HTTPRequestDoc.Fields[0].Name = "matchers"
|
||||||
HTTPRequestDoc.Fields[0].Type = "[]matchers.Matcher"
|
HTTPRequestDoc.Fields[0].Type = "[]matchers.Matcher"
|
||||||
HTTPRequestDoc.Fields[0].Note = ""
|
HTTPRequestDoc.Fields[0].Note = ""
|
||||||
@ -568,6 +568,16 @@ func init() {
|
|||||||
HTTPRequestDoc.Fields[28].Note = ""
|
HTTPRequestDoc.Fields[28].Note = ""
|
||||||
HTTPRequestDoc.Fields[28].Description = "IterateAll iterates all the values extracted from internal extractors"
|
HTTPRequestDoc.Fields[28].Description = "IterateAll iterates all the values extracted from internal extractors"
|
||||||
HTTPRequestDoc.Fields[28].Comments[encoder.LineComment] = "IterateAll iterates all the values extracted from internal extractors"
|
HTTPRequestDoc.Fields[28].Comments[encoder.LineComment] = "IterateAll iterates all the values extracted from internal extractors"
|
||||||
|
HTTPRequestDoc.Fields[29].Name = "digest-username"
|
||||||
|
HTTPRequestDoc.Fields[29].Type = "string"
|
||||||
|
HTTPRequestDoc.Fields[29].Note = ""
|
||||||
|
HTTPRequestDoc.Fields[29].Description = "DigestAuthUsername specifies the username for digest authentication"
|
||||||
|
HTTPRequestDoc.Fields[29].Comments[encoder.LineComment] = "DigestAuthUsername specifies the username for digest authentication"
|
||||||
|
HTTPRequestDoc.Fields[30].Name = "digest-password"
|
||||||
|
HTTPRequestDoc.Fields[30].Type = "string"
|
||||||
|
HTTPRequestDoc.Fields[30].Note = ""
|
||||||
|
HTTPRequestDoc.Fields[30].Description = "DigestAuthPassword specifies the password for digest authentication"
|
||||||
|
HTTPRequestDoc.Fields[30].Comments[encoder.LineComment] = "DigestAuthPassword specifies the password for digest authentication"
|
||||||
|
|
||||||
MATCHERSMatcherDoc.Type = "matchers.Matcher"
|
MATCHERSMatcherDoc.Type = "matchers.Matcher"
|
||||||
MATCHERSMatcherDoc.Comments[encoder.LineComment] = " Matcher is used to match a part in the output from a protocol."
|
MATCHERSMatcherDoc.Comments[encoder.LineComment] = " Matcher is used to match a part in the output from a protocol."
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user