The Content Security Policy (CSP) Header is a security feature implemented in modern web browsers to prevent Cross-Site Scripting (XSS), Clickjacking, and other code injection attacks. It defines which resources (e.g., scripts, styles, images) a web page is allowed to load and execute, thereby reducing the risk of malicious content being injected into a website.
A CSP directive is a rule that defines what resources can be loaded. Below are key directives and how to fix related issues:
Directive | Purpose | Example | Fixing Issues |
---|---|---|---|
default-src | Defines default policy for all resources | default-src 'self'; | Restrict all content to the same domain. |
script-src | Controls JavaScript execution | script-src 'self' https://trustedscripts.com; | Block untrusted scripts. |
style-src | Controls external CSS sources | style-src 'self' 'unsafe-inline'; | Avoid inline styles, use hashed styles instead. |
img-src | Restricts image sources | img-src 'self' https://cdn.trusted.com; | Allow only images from trusted CDNs. |
frame-src | Restricts embedded frames | frame-src 'none'; | Disable iframes to prevent Clickjacking. |
Use Browser Developer Tools:
F12
or Ctrl + Shift + I
).Enable CSP Report-Only Mode:
Issue | Cause | Fix |
---|---|---|
Inline scripts blocked | script-src does not allow 'unsafe-inline' | Use nonce or hashes for inline scripts. |
Third-party scripts blocked | External scripts not whitelisted | Add trusted domains in script-src . |
Images from CDN not loading | img-src is restricted | Add CDN domain to img-src . |
Fonts not displaying | font-src is restrictive | Include font provider in font-src . |
Iframes not working | frame-src set to 'none' | Allow specific domains in frame-src . |
'unsafe-inline'
and 'unsafe-eval'
: Use script hashing (sha256-hash
) instead.The Content Security Policy (CSP) Header is an essential security feature that prevents attacks like XSS and Clickjacking. Implementing and maintaining a proper CSP policy requires careful testing and monitoring. Use CSP Report-Only Mode first, whitelist trusted sources, and regularly update your policies to ensure your website remains secure.