Skip to content

Commit 03df1c7

Browse files
J12934Weltraumschaf
authored andcommitted
Update scantypes for telemetry tracking
1 parent 7de4e60 commit 03df1c7

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

cmd/telemetry/main.go

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,38 +17,39 @@ 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-
"doggo": true,
20+
"amass": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
21+
"angularjs-csti-scanner": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
22+
"cmseek": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
23+
"doggo": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
2424
"ffuf": true,
2525
"git-repo-scanner": true,
2626
"gitleaks": true,
2727
"kube-hunter": true,
28-
"kubeaudit": true,
28+
"kubeaudit": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
2929
"ncrack": true,
3030
"nikto": true,
3131
"nmap": true,
3232
"nuclei": true,
3333
"screenshooter": true,
3434
"semgrep": true,
3535
"ssh-audit": true,
36-
"ssh-scan": true,
36+
"ssh-scan": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
3737
"sslyze": true,
3838
"trivy-filesystem": true,
3939
"trivy-image": true,
4040
"trivy-repo": true,
4141
"trivy-sbom-image": true,
4242
"trivy": true,
43-
"typo3scan": true,
44-
"whatweb": true,
43+
"typo3scan": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
44+
"whatweb": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
4545
"wpscan": true,
46-
"zap-advanced-scan": true,
47-
"zap-api-scan": true,
46+
"zap-advanced-scan": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
47+
"zap-api-scan": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
4848
"zap-automation-scan": true,
49-
"zap-baseline-scan": true,
50-
"zap-full-scan": true,
51-
"other": true,
49+
"zap-baseline-scan": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
50+
"zap-full-scan": true, // deprecated. we'll keep it in this list to still recieve telemetry data from older versions
51+
52+
"other": true,
5253
}
5354

5455
// TelemetryData submitted by telemetry client in operator

0 commit comments

Comments
 (0)