1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
<!DOCTYPE HTML>
<html>
<head>
<title>Scripts should be allowed if a matching URL hash is present</title>
<script src="/common/get-host-info.sub.js"></script>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'c'></script>
<script src='support/util.js' nonce='abc'></script>
</head>
<body>
<script>
const { ORIGIN, REMOTE_ORIGIN } = get_host_info();
const scriptUrl = new URL("./support/externalScript.js", document.location).toString();
const dynamicScriptUrl = new URL("./support/add_dynamic_script.js", document.location).toString();
const redirectUrl = new URL("/common/redirect.py?location=" + scriptUrl, document.location).toString();
// This is the hash of the string 'foo.js':
const wrongHash = "LJVNbdCJGjP5027dMuLOQeMEiDI8JvMr5zMiXqW5tzs=";
function get_iframe_url(test_type, policy, script_url) {
return test_type == "header" ?
`support/iframe.sub.html?pipe=header(Content-Security-Policy,${policy})&script_url=${script_url}`:
`support/iframe_meta.sub.html?policy=${policy}&script_url=${script_url}`;
}
function get_iframe_url_with_inline_script(test_type, policy) {
return test_type == "header" ?
`support/iframe_inline.sub.html?pipe=header(Content-Security-Policy,${policy})`:
`support/iframe_inline_meta.sub.html?policy=${policy}`;
}
function get_iframe_url_in_child_dir(test_type, policy, script_url) {
return test_type == "header" ?
`support/child_dir/iframe.sub.html?pipe=header(Content-Security-Policy,${policy})&script_url=${script_url}`:
`support/child_dir/iframe_meta.sub.html?policy=${policy}&script_url=${script_url}`;
}
for (let test_type of ["header", "metatag"]) {
promise_test(async t => {
const scriptUrlHash = await sha256ofURL(scriptUrl);
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "script-src should allow script by its url hash - " + test_type);
promise_test(async t => {
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${wrongHash}' ${ORIGIN} ${REMOTE_ORIGIN}`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'CSP_VIOLATION');
}, "A parseable url-hash should ignore hostname allowlists - " + test_type);
// TODO(crbug.com/414459670): Add a test with an invalid url-hash.
promise_test(async t => {
const scriptUrlHash = await sha256ofURL(scriptUrl);
const policy = `default-src 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "default-src should allow script by its url hash - " + test_type);
promise_test(async t => {
const scriptUrlHash = await sha256ofURL(scriptUrl);
const policy = `script-src-elem 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "script-src-elem should allow script by its url hash - " + test_type);
promise_test(async t => {
// externalScript.js isn't allowlisted:
const dynamicScriptUrlHash = await sha256ofURL(dynamicScriptUrl);
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${dynamicScriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'add_dynamic_script.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'CSP_VIOLATION');
}, "url hashes should not allow dynamically inserted script transitively - " + test_type);
promise_test(async t => {
const scriptUrlHash = await sha256ofURL(scriptUrl);
const dynamicScriptUrlHash = await sha256ofURL(dynamicScriptUrl);
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${dynamicScriptUrlHash}' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'add_dynamic_script.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "url hashes should allow dynamically inserted script if allowlisted - " + test_type);
promise_test(async t => {
// externalScript.js isn't explicitly allowlisted but it should be allowed:
const redirectUrlHash = await sha256ofURL(redirectUrl);
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${redirectUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, redirectUrl);
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "url hashes should allow redirected scripts - " + test_type);
// Tests for strict-dynamic-url keyword:
promise_test(async t => {
// add_dynamic_script.js isn't allowlisted but strict-dynamic-url should allow it:
const dynamicScriptUrlHash = await sha256ofURL(dynamicScriptUrl);
const policy = `script-src 'nonce-forinlinescript' 'strict-dynamic-url' 'url-sha256-${dynamicScriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'add_dynamic_script.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "dynamically inserted parser-inserted script should be allowed if strict-dynamic-url is present - " + test_type);
promise_test(async t => {
// externalScript.js isn't allowlisted but strict-dynamic-url should allow it:
const scriptUrlHash = await sha256ofURL(scriptUrl);
// This is the hash of the inline script that dynamically inserts externalScript.js.
const inlineScriptHash = "F8UqObF6TSi2W4dDcDzAOAplJkYovBE6JpJjsZJy5HA=";
const policy = `script-src 'nonce-forinlinescript' 'strict-dynamic-url' 'sha256-${inlineScriptHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url_with_inline_script(test_type, policy);
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "dynamically inserted script inserted by an inline script should be allowed if strict-dynamic-url is present - " + test_type);
// Relative URL tests:
promise_test(async t => {
const scriptUrlHash = await sha256ofURL("externalScript.js");
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "script-src should allow script by its relative url's hash - " + test_type);
promise_test(async t => {
const scriptUrlHash = await sha256ofURL("child_dir/externalScript.js");
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'child_dir/externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "script-src should allow script by its relative url's hash in child directory - " + test_type);
promise_test(async t => {
const scriptUrlHash = await sha256ofURL("./externalScript.js");
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url(test_type, policy, 'externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'CSP_VIOLATION');
}, "script-src should disallow script with incorrect relative url hash - " + test_type);
// Relative URL tests with iframes in support/child_dir.
promise_test(async t => {
const scriptUrlHash = await sha256ofURL("externalScript.js");
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url_in_child_dir(test_type, policy, 'externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "script-src should allow script by its relative url's hash in an iframe in child dir - " + test_type);
promise_test(async t => {
const scriptUrlHash = await sha256ofURL("../externalScript.js");
const policy = `script-src 'nonce-forinlinescript' 'url-sha256-${scriptUrlHash}'`
let frame = document.createElement('iframe');
frame.src = get_iframe_url_in_child_dir(test_type, policy, '../externalScript.js');
document.body.appendChild(frame);
const msgEvent = await new Promise(resolve => window.onmessage = resolve);
assert_equals(msgEvent.data, 'SCRIPT_RAN');
}, "script-src should allow script in parent dir by its relative url's hash in an iframe in child dir - " + test_type);
}
</script>
</body>
</html>
|