2020-08-03 23:41:48 +03:00
|
|
|
/**
|
|
|
|
* Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
* Modifications copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2021-04-03 07:07:45 +03:00
|
|
|
|
2021-04-29 21:11:32 +03:00
|
|
|
import { browserTest as it, expect } from './config/browserTest';
|
2021-04-06 01:51:45 +03:00
|
|
|
import { attachFrame } from './config/utils';
|
2020-08-03 23:41:48 +03:00
|
|
|
|
2021-12-30 05:51:28 +03:00
|
|
|
it('should bypass CSP meta tag #smoke', async ({ browser, server }) => {
|
2020-08-03 23:41:48 +03:00
|
|
|
// Make sure CSP prohibits addScriptTag.
|
|
|
|
{
|
|
|
|
const context = await browser.newContext();
|
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.PREFIX + '/csp.html');
|
2021-09-27 19:58:08 +03:00
|
|
|
await page.addScriptTag({ content: 'window["__injected"] = 42;' }).catch(e => void e);
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await page.evaluate('window["__injected"]')).toBe(undefined);
|
2020-08-03 23:41:48 +03:00
|
|
|
await context.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// By-pass CSP and try one more time.
|
|
|
|
{
|
|
|
|
const context = await browser.newContext({ bypassCSP: true });
|
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.PREFIX + '/csp.html');
|
2021-09-27 19:58:08 +03:00
|
|
|
await page.addScriptTag({ content: 'window["__injected"] = 42;' });
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await page.evaluate('window["__injected"]')).toBe(42);
|
2020-08-03 23:41:48 +03:00
|
|
|
await context.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-09-27 19:58:08 +03:00
|
|
|
it('should bypass CSP header', async ({ browser, server }) => {
|
2020-08-03 23:41:48 +03:00
|
|
|
// Make sure CSP prohibits addScriptTag.
|
|
|
|
server.setCSP('/empty.html', 'default-src "self"');
|
|
|
|
|
|
|
|
{
|
|
|
|
const context = await browser.newContext();
|
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
2021-09-27 19:58:08 +03:00
|
|
|
await page.addScriptTag({ content: 'window["__injected"] = 42;' }).catch(e => void e);
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await page.evaluate('window["__injected"]')).toBe(undefined);
|
2020-08-03 23:41:48 +03:00
|
|
|
await context.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// By-pass CSP and try one more time.
|
|
|
|
{
|
|
|
|
const context = await browser.newContext({ bypassCSP: true });
|
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
2021-09-27 19:58:08 +03:00
|
|
|
await page.addScriptTag({ content: 'window["__injected"] = 42;' });
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await page.evaluate('window["__injected"]')).toBe(42);
|
2020-08-03 23:41:48 +03:00
|
|
|
await context.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-09-27 19:58:08 +03:00
|
|
|
it('should bypass after cross-process navigation', async ({ browser, server }) => {
|
2020-08-03 23:41:48 +03:00
|
|
|
const context = await browser.newContext({ bypassCSP: true });
|
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.PREFIX + '/csp.html');
|
2021-09-27 19:58:08 +03:00
|
|
|
await page.addScriptTag({ content: 'window["__injected"] = 42;' });
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await page.evaluate('window["__injected"]')).toBe(42);
|
2020-08-03 23:41:48 +03:00
|
|
|
|
|
|
|
await page.goto(server.CROSS_PROCESS_PREFIX + '/csp.html');
|
2021-09-27 19:58:08 +03:00
|
|
|
await page.addScriptTag({ content: 'window["__injected"] = 42;' });
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await page.evaluate('window["__injected"]')).toBe(42);
|
2020-08-03 23:41:48 +03:00
|
|
|
await context.close();
|
|
|
|
});
|
|
|
|
|
2021-09-27 19:58:08 +03:00
|
|
|
it('should bypass CSP in iframes as well', async ({ browser, server }) => {
|
2020-08-03 23:41:48 +03:00
|
|
|
// Make sure CSP prohibits addScriptTag in an iframe.
|
|
|
|
{
|
|
|
|
const context = await browser.newContext();
|
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
2020-09-19 01:52:14 +03:00
|
|
|
const frame = await attachFrame(page, 'frame1', server.PREFIX + '/csp.html');
|
2021-09-27 19:58:08 +03:00
|
|
|
await frame.addScriptTag({ content: 'window["__injected"] = 42;' }).catch(e => void e);
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await frame.evaluate('window["__injected"]')).toBe(undefined);
|
2020-08-03 23:41:48 +03:00
|
|
|
await context.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// By-pass CSP and try one more time.
|
|
|
|
{
|
|
|
|
const context = await browser.newContext({ bypassCSP: true });
|
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
2020-09-19 01:52:14 +03:00
|
|
|
const frame = await attachFrame(page, 'frame1', server.PREFIX + '/csp.html');
|
2021-09-27 19:58:08 +03:00
|
|
|
await frame.addScriptTag({ content: 'window["__injected"] = 42;' }).catch(e => void e);
|
2020-08-12 01:50:53 +03:00
|
|
|
expect(await frame.evaluate('window["__injected"]')).toBe(42);
|
2020-08-03 23:41:48 +03:00
|
|
|
await context.close();
|
|
|
|
}
|
|
|
|
});
|