mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
345 B
JavaScript
13 lines
345 B
JavaScript
window.addEventListener("message", function (e) {
|
|
let data = e.data;
|
|
new RegExp("^"+ data.name + "$", "i"); // NOT OK
|
|
});
|
|
|
|
const SOMEONE_I_TRUST = "myself";
|
|
window.addEventListener("message", function (e) {
|
|
if (e.origin === SOMEONE_I_TRUST) {
|
|
let data = e.data;
|
|
new RegExp("^"+ data.name + "$", "i"); // OK
|
|
}
|
|
});
|