For testing purposes I want to disable CSP so that I can test some XSS on my own website. I have set the meta tag to:
default-src *;
To my understanding this will disable the CSP. However when I go and set this live and check on a CSP Evaluator it returns this
default-src 'self';
base-uri 'self';
block-all-mixed-content;
font-src 'self' https: data:;
frame-ancestors 'self';
img-src 'self' data:;
object-src 'none';
script-src 'self';
script-src-attr 'none';
style-src 'self' https: 'unsafe-inline';
upgrade-insecure-requests
Why is this happening and what can I do to disable it?