-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
376 lines (321 loc) · 13.6 KB
/
index.html
File metadata and controls
376 lines (321 loc) · 13.6 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="data:,">
<meta charset="UTF-8">
<meta name="google" content="notranslate">
<script>
const params = new URLSearchParams(location.search);
window.history.replaceState(null, null, window.location.pathname);
// Generate a random number between 10000 and 50000
const stolSum = Math.floor(Math.random() * (50000 - 10000 + 1)) + 10000;
// Array of names
const allNames = [
"Phil Jenks", "Neil Rand", "Dale Spence", "Wayne Bryant", "Glenn Platt",
"Todd Ames", "Earl Dade", "Rick Nash", "Gary Miles", "Paul Finch",
"Brad Kane", "Mike York", "Carl Dean", "Vince Hunt", "Fred Carr"
];
// Function to select a random name from the array
const randomName = (names) => names[Math.floor(Math.random() * names.length)];
// Select a random name
const pName = randomName(allNames);
// JSON object with details
const dets = JSON.stringify({
bnk: "b_Ely.png",
bankname: "Elysium Holding Company",
cname: pName,
cnum: "4716906231502282",
stolsum: stolSum.toString()
});
// Output the message
const response1 = `We hacked the email account of a friend of ${pName} and have his login info, but to hide our tracks we want someone else to access his account via the webmail server of the University of Vienna (access at: <a href=\"https://webmail.univie.ac.at/\" target=\"_blank\" rel=\"noopener noreferrer\">https://webmail.univie.ac.at/</a> or <a href=\"https://email.forms.univie.ac.at/webmail-abrufen/\" target=\"_blank\" rel=\"noopener noreferrer\">https://email.forms.univie.ac.at/webmail-abrufen/</a>). The username is \"hmuellerh64\", the password is \"Uni2024\". Search messages for the missing credit card information, for example look for \"credit card\" or \"card date\".<br><br>_sep_${dets}`;
const response2 = `Thank you. With your help, we managed to withdraw ${stolSum} U.S. dollars from the account of ${pName}. To collect your reward, use the following password: DEMOPASSWORD. As soon as you have copied this password, close this page and never access it again.`;
function randomdigit(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function hasnumalph(myString) {
return /\d/.test(myString) && /[a-zA-Z]/g.test(myString);
}
function inval() {
setTimeout(function() {
document.getElementById("fin").innerHTML = 'Invalid information. Try again with correct data.';
document.getElementById("sendbut").disabled = false;
setTimeout(function() {
document.getElementById("fin").innerHTML = '';
}, 3000);
}, randomdigit(4000, 7000));
}
let feeds, details;
function sending() {
document.getElementById("sendbut").disabled = true;
document.getElementById("fin").innerHTML = 'Verifying credit card... Please wait.';
let p_date1 = document.getElementById('date1').value.trim();
let p_date2 = document.getElementById('date2').value.trim();
details.pin = document.getElementById('pin').value.trim();
if (p_date1.length < 2 || p_date2.length < 2 || details.pin.length < 4) {
inval();
} else {
setdets();
feeds = response2;
setTimeout(function() {
document.getElementById("fin").innerHTML = 'Accessing bank account... Please wait.';
setTimeout(function() {
document.getElementById("double").style.display = "block";
}, 8000);
}, 5000);
}
}
function setdets() {
const dte = new Date();
document.getElementById("datenow").innerHTML = dte.getFullYear() + "-" +
("0" + (dte.getMonth() + 1)).slice(-2) + "-" +
("0" + dte.getDate()).slice(-2) + " " +
("0" + dte.getHours()).slice(-2) + ":" +
("0" + dte.getMinutes()).slice(-2);
document.getElementById("cnum").innerHTML = details.cnum.substring(details.cnum.length - 4);
document.getElementById("amount").innerHTML = details.stolsum;
}
function cardverif() {
document.getElementById("butid").disabled = true;
document.getElementById("wrong").innerHTML = "";
var enteredName = document.getElementById("cname").value.trim().toUpperCase().replace(/\s+/g, '');
var enteredPin = document.getElementById("pass").value;
var storedName = details.cname.toUpperCase().replace(/\s+/g, '');
if (enteredName === storedName && enteredPin === details.pin) {
document.getElementById("spinid").style.display = 'block';
setTimeout(function() {
document.getElementById("spinid").style.display = 'none';
setTimeout(function() {
document.getElementById("spinid").style.display = 'block';
setTimeout(function() {
document.getElementById("spinid").style.display = 'none';
document.getElementById("double").style.display = "none";
document.getElementById("fin").innerHTML = feeds;
}, 3000);
}, 90);
}, 2000);
} else {
document.getElementById("spinid").style.display = 'block';
setTimeout(function() {
document.getElementById("spinid").style.display = 'none';
document.getElementById("wrong").innerHTML = "Cardholder name or security code is incorrect. Please try again.";
document.getElementById("butid").disabled = false;
}, randomdigit(2000, 4000));
}
}
document.addEventListener("DOMContentLoaded", function() {
const respsplt = response1.split("_sep_");
document.getElementById("sub").innerHTML = respsplt[0];
details = JSON.parse(respsplt[1]);
let nameParts = details.cname.split(" ");
let firstName = nameParts[0];
let lastName = nameParts.length > 1 ? nameParts.slice(1).join(" ") : "";
document.getElementById("name1").value = firstName;
document.getElementById("name2").value = lastName;
document.getElementById("bank").value = details.bankname;
document.getElementById("cardnumber").value = details.cnum;
document.getElementById("main").style.display = "block";
});
</script>
<style>
#double {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.modal-content {
background-color: #fefefe;
margin: 0 auto;
padding: 20px;
border: 1px solid #888;
display: table;
}
input {
font: small-caption;
font-size: 16px;
}
#spinid {
margin: 0;
padding: 0;
background: black;
opacity: 0.4;
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
display: none;
z-index: 2;
}
.lds-spinner {
opacity: 1;
color: official;
display: inline-block;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
}
.lds-spinner div {
transform-origin: 40px 40px;
animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
content: " ";
display: block;
position: absolute;
top: 3px;
left: 37px;
width: 6px;
height: 18px;
border-radius: 20%;
background: #fff;
}
.lds-spinner div:nth-child(1) {
transform: rotate(0deg);
animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
transform: rotate(30deg);
animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
transform: rotate(60deg);
animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
transform: rotate(90deg);
animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
transform: rotate(120deg);
animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
transform: rotate(150deg);
animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
transform: rotate(180deg);
animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
transform: rotate(210deg);
animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
transform: rotate(240deg);
animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
transform: rotate(270deg);
animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
transform: rotate(300deg);
animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
transform: rotate(330deg);
animation-delay: 0s;
}
@keyframes lds-spinner {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>
</head>
<body class="notranslate" style="line-height:1.5">
<div id="sub">
...
</div>
<div id="main" style="display:none;">
<b>Important: Do not leave any trace! (Do not delete or send any messages! Do not modify any settings! Do not
save or store the password anywhere, and do not show it to anyone! As soon as you have the correct
information, log out of the email
account or close the website! Never again access this account!)</b><br><br>
If you found any credit card details, copy them here exactly as you find them! Then confirm the external
verification by submitting the same PIN as security code. (If requested, you may also need to type in some of
the other details that you see below, such as the account holder name, bank name, or card number.)
<br><br>
Given (first) name of the account holder: <input id="name1" type="text" style="text-transform:uppercase"
readonly>
<br>
Family (last) name of the account holder: <input id="name2" type="text" style="text-transform:uppercase"
readonly>
<br>
Name of the bank: <input id="bank" type="text" size="40" style="text-transform:uppercase" readonly>
<br>
Credit card number: <input id="cardnumber" type="text" size="40" readonly>
<br>
Expiration date (in the format mm/yy): <input id="date1" type="text" size="2" maxlength="2">/<input id="date2"
type="text" size="2" maxlength="2">
<br>
PIN (4 digits): <input id="pin" type="text" size="4" maxlength="4">
<br><br>
<button id='sendbut' onclick="sending();" style="font-size: 200%">send</button>
<br><br>
<span id="fin" style="font-weight: bold"></span>
<br><br>
</div>
<div id="double">
<div class="modal-content">
<div style="float:left;">
<b>Advanced verification.</b>
</div>
<div style="float:right;text-align:right;">
<img id="bnk" alt='' style='width: 70%;height: 70%;'>
</div>
<div style='clear:both;'></div>
<div style="margin: 0 auto;">
<p><b>Merchant:</b> K. & N. Ltd.</p>
<p><b>Amount:</b> USD <span id="amount"></span> </p>
<p><b>Date:</b> <span id="datenow"></span> </p>
<p><b>Card Number:</b> XXXX XXXX XXXX <span id="cnum"></span> </p>
<p><b>Cardholder Name:</b> <input id="cname" type="text" style="text-transform:uppercase;"> </p>
<p><b>Security Code:</b> <input id="pass" type="password" size="4" maxlength="4"> </p>
<span id="wrong" style="color:red;"></span>
</div>
<button type="button" id='butid' onclick="cardverif();" style="display: block; margin: 0 auto;">
Submit
</button>
</div>
</div>
<div id="spinid">
<div class="lds-spinner">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</body>
</html>