Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/pkg/templates/parser_stats.go
2070 views
1
package templates
2
3
const (
4
SyntaxWarningStats = "syntax-warnings"
5
SyntaxErrorStats = "syntax-errors"
6
RuntimeWarningsStats = "runtime-warnings"
7
SkippedCodeTmplTamperedStats = "unsigned-warnings"
8
ExcludedHeadlessTmplStats = "headless-flag-missing-warnings"
9
TemplatesExcludedStats = "templates-executed"
10
ExcludedCodeTmplStats = "code-flag-missing-warnings"
11
ExludedDastTmplStats = "fuzz-flag-missing-warnings"
12
SkippedUnsignedStats = "skipped-unsigned-stats" // tracks loading of unsigned templates
13
ExcludedSelfContainedStats = "excluded-self-contained-stats"
14
ExcludedFileStats = "excluded-file-stats"
15
SkippedRequestSignatureStats = "skipped-request-signature-stats"
16
)
17
18