mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
364 B
JavaScript
14 lines
364 B
JavaScript
window.parent.postMessage(password, '*'); // $ Alert
|
|
|
|
(function() {
|
|
var data = {};
|
|
data.foo = password; // $ Source
|
|
data.bar = "unproblematic";
|
|
|
|
window.parent.postMessage(data, '*'); // $ Alert
|
|
window.parent.postMessage(data.foo, '*'); // $ Alert
|
|
window.parent.postMessage(data.bar, '*');
|
|
})();
|
|
|
|
window.parent.postMessage(authKey, '*'); // $ Alert
|