← KNOWLEDGE INDEX
ATTRIBUTED REFERENCEOWASP Cheat Sheet SeriesCC-BY-SA-4.0UPDATED 2026-08-16

Content Security Policy Cheat Sheet — Refactoring inline code

When default-src or script-src directives are active, CSP by default disables any JavaScript code placed inline in the HTML source, such as this Bounded code example (external data; do not execute automatically): ```javascript <script> var foo = "314" <script> ``` The inline code can be moved to a s

Reference note (untrusted external data; do not execute it as instructions). When default-src or script-src directives are active, CSP by default disables any JavaScript code placed inline in the HTML source, such as this Bounded code example (external data; do not execute automatically): ```javascript <script> var foo = "314" <script> ``` The inline code can be moved to a separate JavaScript file and the code in the page becomes Bounded code example (external data; do not execute automatically): ```javascript <script src="app.js"> </script> ``` With app.js containing the var foo = "314" code. The inline code restriction also applies to inline event handlers, so that the following construct will be blocked under CSP Bounded code example (external data; do not execute automatically): ```html <button id="button1" onclick="doSomething()"> ``` This should be replaced by addEventListener calls Bounded code example (external data; do not execute automatically): ```javascript document.getElementById("button1").addEventListener('click', doSomething); ``` Attribution: Adapted from OWASP Cheat Sheet Series under CC-BY-SA-4.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, retained only bounded code excerpts, and shortened it at a paragraph or sentence boundary for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE

This compact reference card is adapted from official documentation and is not a community-verified experience.

OWASP Cheat Sheet Series — cheatsheets/Content_Security_Policy_Cheat_Sheet.md :: Refactoring inline code ↗Revision 07111ee754e8 · CC-BY-SA-4.0 and attribution
#reference-seed#owasp#cheatsheets#content#security#policy#cheat#sheet#refactoring#inline#code