-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
309 lines (271 loc) · 14.7 KB
/
Copy pathindex.html
File metadata and controls
309 lines (271 loc) · 14.7 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anti-Scam Simulator & Guide</title>
<style>
:root {
--bg-color: #f8fafc;
--text-color: #0f172a;
--card-bg: #ffffff;
--accent-danger: #ef4444;
--accent-success: #22c55e;
--primary: #3b82f6;
--border-color: #e2e8f0;
}
body {
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.5;
background-color: var(--bg-color);
color: var(--text-color);
margin: 0;
padding: 0;
}
header {
background: linear-gradient(135deg, #1e293b, #0f172a);
color: white;
text-align: center;
padding: 3rem 1rem;
}
.lang-selector {
margin-top: 1rem;
}
.lang-selector button {
background: #334155;
color: white;
border: none;
padding: 0.5rem 1rem;
margin: 0 0.25rem;
border-radius: 4px;
cursor: pointer;
}
.lang-selector button.active {
background: var(--primary);
}
.container {
max-width: 1000px;
margin: 2rem auto;
padding: 0 1rem;
}
.card {
background: var(--card-bg);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
border: 1px solid var(--border-color);
}
h2 {
margin-top: 0;
color: #1e293b;
border-bottom: 2px solid var(--border-color);
padding-bottom: 0.5rem;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
@media (max-width: 768px) {
.grid { grid-template-columns: 1fr; }
}
/* Simulator Styles */
.captcha-simulator {
background: #f1f5f9;
border: 2px solid #cbd5e1;
border-radius: 8px;
padding: 2rem;
text-align: center;
position: relative;
}
.fake-captcha-box {
background: white;
border: 1px solid #d1d5db;
padding: 1.5rem;
border-radius: 6px;
display: inline-block;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
max-width: 400px;
}
.shortcut-badge {
background: #e2e8f0;
border: 1px solid #cbd5e1;
border-bottom-width: 3px;
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-family: monospace;
font-weight: bold;
}
.terminal-output {
background: #1e293b;
color: #38bdf8;
font-family: monospace;
padding: 1rem;
border-radius: 6px;
margin-top: 1rem;
text-align: left;
display: none;
}
.comparison-box {
border: 2px solid #ccc;
border-radius: 8px;
padding: 1.5rem;
}
.danger-box { border-color: var(--accent-danger); background: #fef2f2; }
.success-box { border-color: var(--accent-success); background: #f0fdf4; }
.infographic-container {
text-align: center;
margin: 1.5rem 0;
}
.infographic-container img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
</style>
</head>
<body>
<header>
<h1 id="main-title">Aufklärung: Fake Captchas</h1>
<p id="main-sub">Erfahre, wie Kriminelle dein Betriebssystem austricksen wollen.</p>
<div class="lang-selector">
<button onclick="setLanguage('de')" class="active">Deutsch</button>
<button onclick="setLanguage('en')">English</button>
<button onclick="setLanguage('es')">Español</button>
</div>
</header>
<div class="container">
<div class="card">
<h2 id="sec-sim-title">Interaktiver Live-Simulator (Sicher)</h2>
<p id="sec-sim-desc">Hier siehst du, wie eine Betrugsseite versucht, dich zu manipulieren. Klicke auf den Button, um den Ablauf zu starten:</p>
<div class="captcha-simulator">
<div class="fake-captcha-box" id="captcha-box">
<p style="font-weight: bold;" id="fake-prompt">Verifikation erforderlich. Bitte beweise, dass du ein Mensch bist.</p>
<button onclick="triggerSimulation()" style="background: #2563eb; color: white; border: none; padding: 0.6rem 1.2rem; border-radius: 4px; cursor: pointer; font-weight: bold;" id="fake-btn">Ich bin kein Roboter</button>
</div>
<div id="step-instructions" style="display:none; margin-top: 1.5rem; text-align: left; background: white; padding: 1rem; border-radius: 6px; border-left: 4px solid var(--accent-danger);">
<p id="ins-step1">⚠️ <strong>Schritt 1:</strong> Der Betrüger behauptet, die Verifikation sei fehlgeschlagen und verlangt <span class="shortcut-badge">Win + R</span>.</p>
<p id="ins-step2">⚠️ <strong>Schritt 2:</strong> Danach wirst du aufgefordert, <span class="shortcut-badge">STRG + V</span> und <span class="shortcut-badge">Enter</span> zu drücken.</p>
<p id="ins-step3" style="color: var(--accent-success); font-weight: bold;"></p>
</div>
<div class="terminal-output" id="terminal">
C:\Windows\system32> <span id="terminal-command" style="color: white;"></span>
</div>
</div>
</div>
<div class="card">
<h2 id="sec-comp-title">Echt vs. Gefälscht im Überblick</h2>
<div class="infographic-container">
http://googleusercontent.com/image_generation_content/0
</div>
<div class="grid">
<div class="comparison-box danger-box">
<h3 style="color: var(--accent-danger);" id="comp-fake-title">❌ Gefälschtes Captcha</h3>
<ul id="comp-fake-list">
<li>Interagiert mit der Tastatur (Win+R)</li>
<li>Verlangt das Ausführen von Befehlen</li>
<li>Kopiert unsichtbaren Text</li>
</ul>
</div>
<div class="comparison-box success-box">
<h3 style="color: var(--accent-success);" id="comp-real-title">✅ Echtes Captcha</h3>
<ul id="comp-real-list">
<li>Findet NUR im Browser statt</li>
<li>Bilder anklicken oder Haken setzen</li>
<li>Fragt niemals nach Systemrechten</li>
</ul>
</div>
</div>
</div>
</div>
<script>
// Sprachdatenbank (Lässt sich leicht auf 100+ Sprachen erweitern)
const translations = {
de: {
title: "Aufklärung: Fake Captchas",
sub: "Erfahre, wie Kriminelle dein Betriebssystem austricksen wollen.",
simTitle: "Interaktiver Live-Simulator (Sicher)",
simDesc: "Hier siehst du, wie eine Betrugsseite versucht, dich zu manipulieren. Klicke auf den Button, um den Ablauf zu starten:",
fakePrompt: "Verifikation erforderlich. Bitte beweise, dass du ein Mensch bist.",
fakeBtn: "Ich bin kein Roboter",
step1: "⚠️ <strong>Schritt 1:</strong> Die Fake-Seite täuscht einen Fehler vor und fordert dich auf, <span class='shortcut-badge'>Win + R</span> zu drücken.",
step2: "⚠️ <strong>Schritt 2:</strong> Sie animiert dich dazu, <span class='shortcut-badge'>STRG + V</span> (Einfügen) und <span class='shortcut-badge'>Enter</span> zu drücken.",
step3: "🎉 <strong>Sicherheits-Check:</strong> Wir haben stattdessen einen völlig harmlosen Text in deine Zwischenablage gelegt! Öffne Notepad und drücke STRG+V, um ihn zu lesen.",
compTitle: "Echt vs. Gefälscht im Überblick",
compFakeTitle: "❌ Gefälschtes Captcha",
compRealTitle: "✅ Echtes Captcha",
fakeList: "<li>Verlangt Tastatur-Befehle (Win+R, STRG+V)</li><li>Nutzt externe Programme wie mshta oder PowerShell</li><li>Kommt oft von illegalen Streaming- oder Downloadseiten</li>",
realList: "<li>Läuft komplett isoliert im Browser ab</li><li>Erfordert Klicks auf Bilder (z.B. Busse, Ampeln)</li><li>Hat niemals Zugriff auf dein Windows-System</li>"
},
en: {
title: "Education: Fake Captchas",
sub: "Learn how cybercriminals try to trick your operating system.",
simTitle: "Interactive Live Simulator (Safe)",
simDesc: "See how a scam website attempts to manipulate you. Click the button to start the simulation:",
fakePrompt: "Verification required. Please prove you are human.",
fakeBtn: "I am not a robot",
step1: "⚠️ <strong>Step 1:</strong> The fake site fakes an error and asks you to press <span class='shortcut-badge'>Win + R</span>.",
step2: "⚠️ <strong>Step 2:</strong> It prompts you to press <span class='shortcut-badge'>CTRL + V</span> (Paste) and <span class='shortcut-badge'>Enter</span>.",
step3: "🎉 <strong>Safety Check:</strong> We copied a completely harmless educational text to your clipboard instead! Open Notepad and press CTRL+V to see it.",
compTitle: "Real vs. Fake Comparison",
compFakeTitle: "❌ Fake Captcha",
compRealTitle: "✅ Real Captcha",
fakeList: "<li>Demands keyboard shortcuts (Win+R, CTRL+V)</li><li>Uses external system tools like mshta or PowerShell</li><li>Usually found on shady streaming or torrent sites</li>",
realList: "<li>Runs entirely contained inside your browser</li><li>Requires clicking images (e.g., traffic lights)</li><li>Never interacts with your Windows operating system</li>"
},
es: {
title: "Educación: Captchas Falsos",
sub: "Aprende cómo los cibercriminales intentan engañar a tu sistema operativo.",
simTitle: "Simulador Interactivo (Seguro)",
simDesc: "Mira cómo un sitio web estafa intenta manipularte. Haz clic en el botón para iniciar:",
fakePrompt: "Verificación requerida. Por favor, demuestra que eres humano.",
fakeBtn: "No soy un robot",
step1: "⚠️ <strong>Paso 1:</strong> El sitio falso simula un error y te pide presionar <span class='shortcut-badge'>Win + R</span>.",
step2: "⚠️ <strong>Paso 2:</strong> Te pide presionar <span class='shortcut-badge'>CTRL + V</span> (Pegar) y <span class='shortcut-badge'>Enter</span>.",
step3: "🎉 <strong>Control de seguridad:</strong> ¡Hemos copiado un texto educativo totalmente inofensivo en tu portapapeles! Abre el Bloc de notas y presiona CTRL+V.",
compTitle: "Comparación: Real vs Falso",
compFakeTitle: "❌ Captcha Falso",
compRealTitle: "✅ Captcha Real",
fakeList: "<li>Exige atajos de teclado (Win+R, CTRL+V)</li><li>Utiliza herramientas del sistema como mshta o PowerShell</li><li>Aparece en sitios de streaming o descargas ilegales</li>",
realList: "<li>Se ejecuta completamente dentro del navegador</li><li>Requiere hacer clic en imágenes (semáforos, autobuses)</li><li>Nunca interactúa con tu sistema Windows</li>"
}
};
function setLanguage(lang) {
// Buttons aktualisieren
document.querySelectorAll('.lang-selector button').forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
// Texte austauschen
document.getElementById('main-title').innerText = translations[lang].title;
document.getElementById('main-sub').innerText = translations[lang].sub;
document.getElementById('sec-sim-title').innerText = translations[lang].simTitle;
document.getElementById('sec-sim-desc').innerText = translations[lang].simDesc;
document.getElementById('fake-prompt').innerText = translations[lang].fakePrompt;
document.getElementById('fake-btn').innerText = translations[lang].fakeBtn;
document.getElementById('ins-step1').innerHTML = translations[lang].step1;
document.getElementById('ins-step2').innerHTML = translations[lang].step2;
// Falls die Simulation schon lief, auch Schritt 3 übersetzen
if(document.getElementById('ins-step3').innerText !== "") {
document.getElementById('ins-step3').innerHTML = translations[lang].step3;
}
document.getElementById('sec-comp-title').innerText = translations[lang].compTitle;
document.getElementById('comp-fake-title').innerText = translations[lang].compFakeTitle;
document.getElementById('comp-real-title').innerText = translations[lang].compRealTitle;
document.getElementById('comp-fake-list').innerHTML = translations[lang].fakeList;
document.getElementById('comp-real-list').innerHTML = translations[lang].realList;
}
function triggerSimulation() {
const currentLang = document.querySelector('.lang-selector button.active').innerText.toLowerCase() === 'deutsch' ? 'de' : (document.querySelector('.lang-selector button.active').innerText.toLowerCase() === 'english' ? 'en' : 'es');
// Ein völlig sicherer Code-Text für die Zwischenablage
const safePayload = "cmd.exe /c echo HIER STÜNDE NORMALERWEISE DER SCHADCODE! Schließe dieses Fenster einfach wieder.";
navigator.clipboard.writeText(safePayload).then(() => {
document.getElementById('step-instructions').style.display = 'block';
document.getElementById('ins-step3').innerHTML = translations[currentLang].step3;
// Terminal-Simulation anzeigen
document.getElementById('terminal').style.display = 'block';
document.getElementById('terminal-command').innerText = safePayload;
});
}
</script>
</body>
</html>