Skip to content

Commit b16c07c

Browse files
committed
Update list of expected scan types
1 parent 7615117 commit b16c07c

File tree

1 file changed

+30
-25
lines changed

1 file changed

+30
-25
lines changed

cmd/telemetry/main.go

Lines changed: 30 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,36 @@ import (
1717
// officialScanTypes contains the list of official secureCodeBox Scan Types.
1818
// Unofficial Scan Types should be reported as "other" to avoid leakage of confidential data via the scan-types name
1919
var officialScanTypes map[string]bool = map[string]bool{
20-
"amass": true,
21-
"angularjs-csti-scanner": true,
22-
"cmseek": true,
23-
"git-repo-scanner": true,
24-
"gitleaks": true,
25-
"kube-hunter": true,
26-
"kubeaudit": true,
27-
"ncrack": true,
28-
"nikto": true,
29-
"nmap": true,
30-
"nuclei": true,
31-
"screenshooter": true,
32-
"semgrep": true,
33-
"ssh-audit": true,
34-
"ssh-scan": true,
35-
"sslyze": true,
36-
"trivy": true,
37-
"typo3scan": true,
38-
"whatweb": true,
39-
"wpscan": true,
40-
"zap-baseline-scan": true,
41-
"zap-api-scan": true,
42-
"zap-full-scan": true,
43-
"zap-advanced-scan": true,
44-
"other": true,
20+
"amass": true,
21+
"cmseek": true,
22+
"doggo": true,
23+
"ffuf": true,
24+
"git-repo-scanner": true,
25+
"gitleaks": true,
26+
"kube-hunter": true,
27+
"kubeaudit": true,
28+
"ncrack": true,
29+
"nikto": true,
30+
"nmap": true,
31+
"nuclei": true,
32+
"screenshooter": true,
33+
"semgrep": true,
34+
"ssh-audit": true,
35+
"ssh-scan": true,
36+
"sslyze": true,
37+
"trivy-image": true,
38+
"trivy-filesystem": true,
39+
"trivy-repo": true,
40+
"trivy-sbom-image": true,
41+
"typo3scan": true,
42+
"whatweb": true,
43+
"wpscan": true,
44+
"zap-baseline-scan": true,
45+
"zap-api-scan": true,
46+
"zap-full-scan": true,
47+
"zap-automation-scan": true,
48+
"zap-advanced-scan": true,
49+
"other": true,
4550
}
4651

4752
// TelemetryData submitted by telemetry client in operator

0 commit comments

Comments
 (0)