Hi
I'm getting the html result of a docker api scan:
docker run --rm -v $(pwd):/zap/wrk/:rw -t owasp/zap2docker-weekly zap-api-scan.py -l PASS -t
https://xxxxxxx/public/vives.json -f openapi -g api-scan.conf -x OWASP-ZAP-Report.xml -r api-scan-report.html
I've added the CSP directives:
default-src 'none'; font-src 'self'; img-src 'self'; script-src 'none'; style-src 'self'; frame-src 'self'; object-src 'none'
But in the api-scan-report.html I always get a list of URLs with the "medium" issue of
CSP: Wildcard Directive
How can I fix this please?
In the same way, how can I get in the HTML the list of passed tests?
Thanks!!!