mirror of
https://github.com/projectdiscovery/nuclei
synced 2026-06-08 16:50:47 +00:00
31ba00cc44
Retain the old exported identifier as a deprecated alias pointing to the corrected ExcludedDastTmplStats so external consumers are not broken by the rename. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
853 B
Go
20 lines
853 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"
|
|
ExcludedDastTmplStats = "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"
|
|
)
|
|
|
|
// Deprecated: Use ExcludedDastTmplStats instead.
|
|
const ExludedDastTmplStats = ExcludedDastTmplStats
|