Content Security Policy
Budget: ₹600 – ₹1,500 INR
I need to check given CSP is vulnerable or not
Content-Security-Policy:
script-src 'self' 'sha256-jy7QYYL2vM8GXA/vzmI+obizcwjzfBteGXcr6vhwC/c=';
style-src 'self' 'sha256-81K6J3FZ+Gh8XcD4miyU4agthtL3EZcVcLh0tsilGwU=' 'sha256-b3IrgBVvuKx/Q3tmAi79fnf6AFClibrz/0S5x1ghdGU=';
object-src 'none';
frame-ancestors 'none'
My understanding above CSP is vulnerable; So how to make it as non vulnerable.
Content-Security-Policy:
script-src 'self' 'sha256-jy7QYYL2vM8GXA/vzmI+obizcwjzfBteGXcr6vhwC/c=';
style-src 'self' 'sha256-81K6J3FZ+Gh8XcD4miyU4agthtL3EZcVcLh0tsilGwU=' 'sha256-b3IrgBVvuKx/Q3tmAi79fnf6AFClibrz/0S5x1ghdGU=';
object-src 'none';
frame-ancestors 'none'
My understanding above CSP is vulnerable; So how to make it as non vulnerable.