The .zap directory contains the security rules and configurations used by the Dynamic Application Security Testing (DAST) workflows, specifically tailored for the ZAP (Zed Attack Proxy) scanner.


Purpose


rules.tsv File

The rules.tsv file is a tab-separated values file defining which security alerts should be ignored by the ZAP scanner during DAST analysis.

Format

ID Action Reason
10020 IGNORE Content Security Policy (CSP) Header Not Set

Sample Entries

ID Action Reason
10020 IGNORE Content Security Policy (CSP) Header Not Set
10021 IGNORE X-Content-Type-Options Header Missing
90033 IGNORE Web Browser XSS Protection Not Enabled
10036 IGNORE Server Leaks Version Information via Header

These rules explicitly ignore common or expected warnings such as missing security headers or informational disclosures that have been reviewed and accepted.


Usage