mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-19 15:35:25 +00:00
* add default get method * remove residual payload logic from old implementation * fuzz: clone current state of component * fuzz: bug fix stacking of payloads in multiple mode * improve stdout template loading stats * stdout: force display warnings if no templates are loaded * update flags in README.md * quote non-ascii chars in extractor output * aws request signature can only be used in signed & verified tmpls * deprecate request signature * remove logic related to deprecated fuzzing input * update test to use ordered params * fix interactsh-url lazy eval: #4946 * output: skip unnecessary updates when unescaping * updates as per requested changes
15 lines
633 B
Go
15 lines
633 B
Go
package templates
|
|
|
|
const (
|
|
SyntaxWarningStats = "syntax-warnings"
|
|
SyntaxErrorStats = "syntax-errors"
|
|
RuntimeWarningsStats = "runtime-warnings"
|
|
SkippedCodeTmplTamperedStats = "unsigned-warnings"
|
|
ExcludedHeadlessTmplStats = "headless-flag-missing-warnings"
|
|
TemplatesExcludedStats = "templates-executed"
|
|
ExcludedCodeTmplStats = "code-flag-missing-warnings"
|
|
ExludedDastTmplStats = "fuzz-flag-missing-warnings"
|
|
SkippedUnsignedStats = "skipped-unsigned-stats" // tracks loading of unsigned templates
|
|
SkippedRequestSignatureStats = "skipped-request-signature-stats"
|
|
)
|