mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
window.setTimeout(";");
|
|
setInterval("update();");
|
|
setInterval(update);
|
|
document.write("alert('Hi!');");
|
|
window.execScript("debugger;");
|
|
|
|
(function(global) {
|
|
var document = global.document;
|
|
document.write("undefined = 2");
|
|
})(this);
|