We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently a configuration file is required to deactivate rules for pds-owaspzap. This is too complicated to use and shall be simplified.
A simple comma separated list of rule ids can be configured either via command line or ENV variable:
--deactivateRules 0,2
ZAP_DEACTIVATED_RULE_REFERENCES="0,2"
zap.deactivation.rule.references=0,2
ZAP_DEACTIVATED_RULE_REFERENCES
The text was updated successfully, but these errors were encountered:
Remove rule structure and replace with simplelist of ids #3697
b3e791d
- remove rules data structure - remove helper scripts and json example files - update test cases - update pds-owaspzap solution
winzj
Successfully merging a pull request may close this issue.
Situation
Currently a configuration file is required to deactivate rules for pds-owaspzap. This is too complicated to use and shall be simplified.
Wanted
A simple comma separated list of rule ids can be configured either via command line or ENV variable:
--deactivateRules 0,2
ZAP_DEACTIVATED_RULE_REFERENCES="0,2"
zap.deactivation.rule.references=0,2
Solution
ZAP_DEACTIVATED_RULE_REFERENCES
The text was updated successfully, but these errors were encountered: