csp.py |
<!DOCTYPE html>
<html>
<head>
<title>CSP</title>
</head>
<body>
<p>{csp}</p>
<img src="/content-security-policy/support/pass.png" />
<script>
let img = document.querySelector("img");
img.onload = img.onerror = (event) => {{
window.parent.postMessage(event.type, '*');
}};
</script>
</body>
</html>
|
666 |