-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
94 lines (93 loc) · 2.45 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap"
rel="stylesheet"
/>
<title>History Flooder</title>
</head>
<body>
<h1>History Flooder</h1>
<form onsubmit="flood();return false">
<input required type="text" id="name" placeholder="Website Name" />
<input required type="text" id="url" placeholder="Website URL" />
<input required type="number" id="count" placeholder="Count" />
<button>Go!</button>
</form>
<style>
* {
box-sizing: border-box !important;
font-family: "Roboto", sans-serif !important;
padding: 0;
margin: 0;
}
body,
html {
padding: 0;
margin: 0;
background-color: #222;
height: 100%;
width: 100%;
}
h1,
h3 {
color: white;
font-weight: 100;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
form {
display: flex;
flex-direction: column;
width: 50%;
padding: 20px;
}
form > * {
margin: 3px;
padding: 10px;
border: 0;
outline: 0;
color: white;
background-color: #333;
border-radius: 10px;
}
button {
background-color: #444;
cursor: pointer;
}
</style>
<script>
function flood() {
name = document.querySelector("#name").value;
url = document.querySelector("#url").value;
count = document.querySelector("#count").value;
document.querySelector("form").outerHTML = "<h3>Flooding...</h3>";
document.title = name;
Array.from({ length: count }).forEach(function () {
history.pushState(
{},
"",
"redir.html?u=" +
url +
"#" +
Math.random() +
Math.random() +
Math.random() +
Math.random() +
Math.random()
);
});
document.querySelector("h3").outerHTML = "<h3>Done!</h3>";
}
</script>
</body>
</html>