mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:15:26 +00:00
14 lines
580 B
Go
14 lines
580 B
Go
|
|
package templates
|
||
|
|
|
||
|
|
const (
|
||
|
|
SyntaxWarningStats = "syntax-warnings"
|
||
|
|
SyntaxErrorStats = "syntax-errors"
|
||
|
|
RuntimeWarningsStats = "runtime-warnings"
|
||
|
|
UnsignedCodeWarning = "unsigned-warnings"
|
||
|
|
HeadlessFlagWarningStats = "headless-flag-missing-warnings"
|
||
|
|
TemplatesExecutedStats = "templates-executed"
|
||
|
|
CodeFlagWarningStats = "code-flag-missing-warnings"
|
||
|
|
// Note: this is redefined in workflows.go to avoid circular dependency, so make sure to keep it in sync
|
||
|
|
SkippedUnsignedStatsTODO = "skipped-unsigned-stats" // tracks loading of unsigned templates
|
||
|
|
)
|