-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscam.html
More file actions
351 lines (305 loc) · 8.98 KB
/
scam.html
File metadata and controls
351 lines (305 loc) · 8.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BuyN0wZ™ - Limited Offer</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: #fff9fc;
color: #111;
overflow-x: hidden;
}
.logo {
font-size: 40px;
font-weight: bold;
padding: 20px;
cursor: pointer;
display: inline-block;
transition: transform 2s ease;
position: fixed;
top: 0;
left: 20px;
z-index: 9999;
}
.shake-logo {
animation: violentShake 1s infinite alternate;
}
@keyframes violentShake {
0% { transform: rotate(0deg); }
25% { transform: rotate(-20deg); }
50% { transform: rotate(20deg); }
75% { transform: rotate(-20deg); }
100% { transform: rotate(20deg); opacity: 0; }
}
header {
padding: 60px 20px 20px;
text-align: center;
}
.title {
font-size: 36px;
font-weight: bold;
margin-bottom: 10px;
}
.title .emoji {
font-size: 40px;
}
.subheading {
font-size: 20px;
color: green;
margin-bottom: 10px;
}
.product-imgs {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin: 30px 0;
}
.product-imgs img {
width: 250px;
height: 180px;
object-fit: cover;
border: 2px dashed red;
background: #fff;
}
.buy-section {
text-align: center;
padding: 30px;
}
.buy-btn {
margin-top: 20px;
background: linear-gradient(to right, #ff0066, #ff6699);
color: white;
border: none;
padding: 20px 40px;
font-size: 24px;
border-radius: 50px;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 8px 20px rgba(255, 0, 85, 0.5);
}
.buy-btn:hover {
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(255, 0, 85, 0.7);
}
.urgency {
color: red;
font-size: 18px;
margin-top: 15px;
}
.timer {
font-size: 18px;
color: red;
margin-top: 10px;
font-weight: bold;
}
.section {
padding: 40px 20px;
border-top: 2px solid #ffe6f0;
}
.section h2 {
font-size: 28px;
margin-bottom: 20px;
}
.reviews-ticker {
white-space: nowrap;
overflow: hidden;
background: #fff0f5;
padding: 10px;
position: relative;
}
.review-line {
display: inline-block;
white-space: nowrap;
animation: scroll 60s linear infinite;
font-size: 16px;
}
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
footer {
padding: 20px;
background: #fff0f5;
text-align: center;
font-size: 14px;
}
.corrupted {
background: repeating-linear-gradient(45deg, red, blue 10px, green 20px);
color: yellow;
text-shadow: 1px 1px 2px black;
transform: skewY(-2deg);
padding: 30px;
}
#blackout {
display: none;
position: fixed;
top: 0; left: 0;
width: 100vw;
height: 100vh;
background-color: black;
color: white;
font-family: 'Courier New', monospace;
padding: 20px;
overflow-y: auto;
z-index: 999999;
}
.line {
margin-bottom: 8px;
}
.crazy {
color: #ff4d4d;
font-size: 20px;
display: inline-block;
}
.crazy span {
display: inline-block;
animation: subtleShake 0.3s infinite alternate;
}
@keyframes subtleShake {
0% { transform: translate(0px, 0px); }
25% { transform: translate(-0.5px, 0.5px); }
50% { transform: translate(0.5px, -0.5px); }
75% { transform: translate(-0.5px, -0.5px); }
100% { transform: translate(0.5px, 0.5px); }
}
</style>
</head>
<body>
<div class="logo" onclick="breakLogo(this)">BuyN0wZ™</div>
<header>
<div class="title">🎁🔥 Mega Clearance Sale 🚀🎉</div>
<div class="subheading">Limited Time - Up to 99% OFF</div>
<div class="urgency">⚠️ 3 left in stock — 83 people viewing now!</div>
<div class="timer" id="timer">Sale ends in 30:00</div>
</header>
<div class="product-imgs">
<img src="broken1.jpg" alt="COULDN'T GET IMAGE">
<img src="missing2.png" alt="COULDN'T GET IMAGE">
<img src="error3.webp" alt="COULDN'T GET IMAGE">
</div>
<div class="buy-section">
<button class="buy-btn" onclick="startAwarenessMessage()">BUY NOW</button>
</div>
<div class="section">
<h2>Shipping Info 📦</h2>
<p>We ship worldwide within 3 minutes of ordering...</p>
</div>
<div class="section">
<h2>Why Choose Us?</h2>
<ul>
<li>✅ Verified by 19,000 fake reviewers</li>
<li>🔐 McAfee Trusted + Norton Certified (we think?)</li>
<li>📉 Prices drop every 4 seconds!</li>
<li>💳 Fully secure: powered by “TotallyLegitPayments Inc.”</li>
</ul>
</div>
<div class="section reviews-ticker">
<div class="review-line">
⭐⭐⭐⭐⭐ "Got my PS5 in 2 mins!" 🚀 — Jane
⭐⭐⭐⭐⭐ "Can’t believe it’s real!!!" 😱 — Mike
⭐⭐⭐⭐ "Even my grandma got one" 😂 — Liz
⭐⭐⭐⭐⭐ "Best site ever!!!" — Cody
⭐⭐⭐⭐⭐ "Ordered 10. All arrived." 🧠 — Zack
⭐⭐⭐⭐ "Everything works!?" — Mysterious Buyer
⭐⭐⭐⭐⭐ "Too good to be legal lol" — HackerMan
⭐⭐⭐⭐ "Hoping I don’t go to jail" 😅 — Steve
⭐⭐⭐⭐⭐ "OMG IT'S MAGIC" — Dana
⭐⭐⭐⭐⭐ "🤑🤑🤑🤑🤑🤑" — Everyone
⭐⭐⭐⭐⭐ "Got my PS5 in 2 mins!" 🚀 — Jane
</div>
</div>
<footer>
Copyrighted!!! Do not impersonate.
</footer>
<div id="blackout"><div id="terminal"></div></div>
<script>
const terminal = document.getElementById("terminal");
const blackout = document.getElementById("blackout");
const timerEl = document.getElementById("timer");
const lines = [
{ text: "Woah", special: true, pause: 1000 },
{ text: "There!", special: true, pause: 2000 },
{ text: "You could've got scammed. ", special: false, pause: 2000 },
{ text: "We don't actually wanna harm you...", special: false, pause: 2000 },
{ text: "Obvious scams = too many emojis, etc.", special: false, pause: 2000 },
{ text: "Fake badges = red flag. DONT BUY.", special: false, pause: 2000 },
{ text: "Just be careful. The internet can be dangerous.", special: false, pause: 0 }
];
function wrapSubtleShake(text) {
return text.split('').map(char => `<span>${char}</span>`).join('');
}
function typeLine(text, special) {
return new Promise(resolve => {
const lineDiv = document.createElement("div");
lineDiv.classList.add("line");
terminal.appendChild(lineDiv);
let i = 0;
const interval = setInterval(() => {
if (i > text.length) {
clearInterval(interval);
resolve();
return;
}
const currentText = text.slice(0, i);
if (special) {
lineDiv.innerHTML = `<span class="crazy">${wrapSubtleShake(currentText)}</span>`;
} else {
lineDiv.textContent = currentText;
}
i++;
}, 30);
});
}
async function runTerminal() {
blackout.style.display = 'block';
terminal.innerHTML = '';
for (const line of lines) {
await typeLine(line.text, line.special);
await new Promise(resolve => setTimeout(resolve, line.pause));
}
}
function startAwarenessMessage() {
runTerminal();
}
function triggerScamReveal() {
document.body.innerHTML = `
<div class="corrupted">
<h1>ORDER NOW!!! (please don't)</h1>
<p>I (actually) CANT BELIEVE ITS REAL!!!!! (cause it isn't)</p>
<p style="font-size: 20px; background: white; color: black; padding: 10px; border: 2px solid red;">
This is your normal space of regular text. It’s a red flag when a sketchy site throws in “normal” looking bits to look safe.
</p>
</div>
<div id="blackout"><div id="terminal"></div></div>
`;
blackout.style.display = 'block';
runTerminal();
}
function breakLogo(el) {
el.classList.add("shake-logo");
setTimeout(() => {
el.textContent = "DONTBUY";
startAwarenessMessage();
}, 3000);
}
let timeLeft = 1800;
setInterval(() => {
if (timeLeft <= 0) {
triggerScamReveal();
} else {
const mins = Math.floor(timeLeft / 60).toString().padStart(2, '0');
const secs = (timeLeft % 60).toString().padStart(2, '0');
timerEl.textContent = `Sale ends in ${mins}:${secs}`;
timeLeft--;
}
}, 1000);
</script>
</body>
</html>