Skip to content

Commit

Permalink
Add back older scanner which have been removed.
Browse files Browse the repository at this point in the history
Might still be contained in telemetry pings
  • Loading branch information
J12934 committed Apr 11, 2024
1 parent 2bcd113 commit 616f9e4
Showing 1 changed file with 32 additions and 30 deletions.
62 changes: 32 additions & 30 deletions cmd/telemetry/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,36 +17,38 @@ import (
// officialScanTypes contains the list of official secureCodeBox Scan Types.
// Unofficial Scan Types should be reported as "other" to avoid leakage of confidential data via the scan-types name
var officialScanTypes map[string]bool = map[string]bool{
"amass": true,
"cmseek": true,
"doggo": true,
"ffuf": true,
"git-repo-scanner": true,
"gitleaks": true,
"kube-hunter": true,
"kubeaudit": true,
"ncrack": true,
"nikto": true,
"nmap": true,
"nuclei": true,
"screenshooter": true,
"semgrep": true,
"ssh-audit": true,
"ssh-scan": true,
"sslyze": true,
"trivy-image": true,
"trivy-filesystem": true,
"trivy-repo": true,
"trivy-sbom-image": true,
"typo3scan": true,
"whatweb": true,
"wpscan": true,
"zap-baseline-scan": true,
"zap-api-scan": true,
"zap-full-scan": true,
"zap-automation-scan": true,
"zap-advanced-scan": true,
"other": true,
"amass": true,
"angularjs-csti-scanner": true,
"cmseek": true,
"doggo": true,
"ffuf": true,
"git-repo-scanner": true,
"gitleaks": true,
"kube-hunter": true,
"kubeaudit": true,
"ncrack": true,
"nikto": true,
"nmap": true,
"nuclei": true,
"screenshooter": true,
"semgrep": true,
"ssh-audit": true,
"ssh-scan": true,
"sslyze": true,
"trivy-filesystem": true,
"trivy-image": true,
"trivy-repo": true,
"trivy-sbom-image": true,
"trivy": true,
"typo3scan": true,
"whatweb": true,
"wpscan": true,
"zap-advanced-scan": true,
"zap-api-scan": true,
"zap-automation-scan": true,
"zap-baseline-scan": true,
"zap-full-scan": true,
"other": true,
}

// TelemetryData submitted by telemetry client in operator
Expand Down

0 comments on commit 616f9e4

Please sign in to comment.