Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 40024 to the list of fingerprint exlusions #508

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cmd/vulcan-zap/manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Timeout = 36000 # 10 hours. Expressed in seconds as an integer.
# 10108 - Reverse Tabnabbing - Not relevant for modern browser versions.
# Ignored scanners for fingerprint:
# 40018 - SQL Injection - Too many false positive results with variable resources.
# 40024 - SQL Injection SQLite - Too many false positive results with variable resources.
# Source: https://www.zaproxy.org/docs/alerts/
# max_scan_duration and max_rule_duration are expressed minutes
# max_scan_duration 9h to allow get results before the 36000 seconds 10h check timeout.
Expand All @@ -15,7 +16,7 @@ Options = """{
"active": true,
"min_score": 0,
"disabled_scanners": ["10062", "10003", "10108"],
"ignored_fingerprint_scanners": ["40018"],
"ignored_fingerprint_scanners": ["40018", "40024"],
"max_spider_duration": 0,
"max_scan_duration": 540,
"max_rule_duration": 0,
Expand Down