mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:25:27 +00:00
* disable self-contained and file protocol templates as default * make excluding default * add config funcs * fix wrn display * fix integration tests * enable self-contained templates when code templates are enabled --------- Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
17 lines
751 B
Go
17 lines
751 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
|
|
ExcludedSelfContainedStats = "excluded-self-contained-stats"
|
|
ExcludedFileStats = "excluded-file-stats"
|
|
SkippedRequestSignatureStats = "skipped-request-signature-stats"
|
|
)
|