-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (49 loc) · 1.74 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<!--
___
| |
__ | | __
/ \=======/ \
\ - - /
| o Q |
\ .-'''-. /
'-\__Y__/-'
`---`
Fancy Bear hacked my homework
-->
<head>
<title>Threat Actor Name Generator</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="title" content="Threat Actor Name Generator">
<meta name="description" content="Generate real-time psuedorandom threat actor names">
<meta name="keywords" content="security,hacking,scary,spooky,hackers,russia,china,hack,attribution,hard">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="@Plazmaz">
</head>
<body>
<h1>Threat Actor Name Generator</h1>
<br>
<br>
<br>
<h3>Our intelligence feeds suggest the threat actor responsible is...</h3>
<br>
<span id="actor"></span>
<br><br><br>
<button id="btn">Generate Next Attribution</button>
<br>
<span id="footer">This stupid site was made by <a href="https://dylankatz.com/?utm_source=threatactors" rel="noopener">Dylan Katz</a></footer>
<script src="index.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-67106116-6">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-67106116-6');
</script>
</body>
</html>