-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 935 Bytes
/
index.html
File metadata and controls
31 lines (31 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<style>
#nodisplay {
display: none;
}
</style>
</head>
<body>
<button onclick = "confirmKill()">Kill Securly (Made by schoolexploitkid)</button>
<script>
window.onbeforeunload = () => {return false;}
var kill = false;
function confirmKill() {
kill = confirm("Are you sure you want to kill Securly?");
if (kill) {
alert("Killing securly in five seconds. When the prompt to close the page shows, click cancel, then click 'prevent this page from making additional dialogues' and click cancel again.");
setTimeout(killCurly, 5000);
}
}
function killCurly() {
var iframe = document.createElement("iframe");
iframe.id = "nodisplay";
iframe.src = "https://poki.com";
document.body.appendChild(iframe);
kill = false;
}
</script>
</body>
</html>