Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for mXSS bypass #123

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions test/edge.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,4 +310,35 @@ describe('special cases', () => {
});
expect(['V,V,V']).toContain(result);
});

it('should fail to use atob of an iframe born out of mXSS (srcdoc)', async function () {
// reference: https://github.com/LavaMoat/snow/issues/91
if (global.BROWSER !== 'CHROME') {
this.skip();
}
const result = await browser.executeAsync(function(done) {
top.bypass = (wins) => top.TEST_UTILS.bypass(wins, done);
(function(){
testdiv.innerHTML = `<iframe
srcdoc="<form><math><mtext></form><form><mglyph><style></math><iframe src=&quot;javascript:top.bypass([window])&quot;></iframe>"
</iframe>`;
}());
});
expect(['CSP-script-src-elem']).toContain(result);
});

it('should fail to use atob of an iframe born out of mXSS (innerHTML)', async function () {
// reference: https://github.com/LavaMoat/snow/issues/91
if (global.BROWSER !== 'CHROME') {
this.skip();
}
const result = await browser.executeAsync(function(done) {
top.bypass = (wins) => top.TEST_UTILS.bypass(wins, done);
(function(){
testdiv.innerHTML = `<form><math><mtext></form><form><mglyph><style></math><iframe src="javascript:top.bypass([window])"></iframe>`;
testdiv.innerHTML = testdiv.innerHTML;
}());
});
expect(['CSP-script-src-elem']).toContain(result);
});
});