-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
499 lines (419 loc) · 15 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
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DarkDecrypter - Hacking Services</title>
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- CSS for styling and animations -->
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #121212;
color: #fff;
overflow-x: hidden;
}
/* Dark Mode */
.dark-mode {
background-color: #181818;
color: #e0e0e0;
}
/* Navbar */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #202020;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
position: sticky;
top: 0;
z-index: 1000;
}
nav .logo {
font-size: 24px;
color: #00ff99;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
text-decoration: none;
color: #fff;
transition: color 0.3s;
}
nav ul li a:hover {
color: #00ff99;
}
/* Mobile Menu Toggle */
.menu-toggle {
display: none;
font-size: 30px;
cursor: pointer;
color: #00ff99;
}
.nav-links {
display: flex;
}
@media (max-width: 768px) {
.menu-toggle {
display: block;
}
.nav-links {
display: none;
flex-direction: column;
width: 100%;
position: absolute;
top: 60px;
left: 0;
background-color: #202020;
}
.nav-links.active {
display: flex;
}
nav ul {
flex-direction: column;
width: 100%;
}
nav ul li {
margin-left: 0;
padding: 10px;
text-align: center;
}
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
background-image: linear-gradient(to bottom right, #202020, #181818);
animation: fadeIn 2s;
}
.hero h1 {
font-size: 64px;
color: #00ff99;
}
.hero p {
font-size: 24px;
margin-top: 20px;
color: #e0e0e0;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 48px;
}
.hero p {
font-size: 18px;
}
}
/* Animated Glow Text */
.glow {
text-shadow: 0 0 10px #00ff99, 0 0 20px #00ff99, 0 0 30px #00ff99;
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 10px #00ff99;
}
to {
text-shadow: 0 0 20px #00ff99, 0 0 30px #00ff99;
}
}
/* Services Section */
.services {
padding: 60px 20px;
background-color: #202020;
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
color: #00ff99;
}
.service-card {
display: flex;
flex-direction: column;
align-items: center;
width: 300px;
height: 250px; /* Fixed height for uniformity */
margin: 20px;
padding: 20px;
background-color: #181818;
border-radius: 10px;
transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.service-card i {
font-size: 48px;
color: #00ff99;
margin-bottom: 20px;
}
.service-card h3 {
font-size: 24px;
color: #e0e0e0;
}
.service-card p {
font-size: 16px;
color: #999;
}
/* Payment Section */
.payment {
text-align: center;
padding: 50px;
background-color: #1f1f1f;
color: #00ffc99;
color: white;
}
.payment-methods {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.payment-methods a {
text-decoration: none;
}
/* Make payment method icons smaller */
.payment-icon {
width: 80px;
height: 80px;
object-fit: contain;
transition: transform 0.3s ease;
}
/* Add hover effect */
.payment-icon:hover {
transform: scale(1.1);
}
/* Articles Section */
.articles {
padding: 60px 20px;
background-color: #1f1f1f
;
}
.articles h2 {
text-align: center;
font-size: 36px;
color: #00ff99;
}
.article {
margin: 30px auto;
max-width: 700px;
background-color: #0f0f0f;
padding: 20px;
border-radius: 10px;
}
.article h3 {
font-size: 24px;
color: #e0e0e0;
}
.article p {
font-size: 16px;
color: #999;
margin-top: 10px;
}
/* About Section */
.about {
padding: 60px 20px;
background-color: #202020;
text-align: center;
}
.about h2 {
font-size: 36px;
color: #00ff99;
}
.about p {
font-size: 18px;
margin-top: 20px;
color: #e0e0e0;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
/* Contact Section */
.contact {
padding: 60px 20px;
background-color: #1f1f1f
;
text-align: center;
}
.contact h2 {
font-size: 36px;
color: #00ff99;
}
.contact p {
font-size: 18px;
color: #e0e0e0;
}
.contact a {
font-size: 24px;
color: #00ff99;
text-decoration: none;
margin: 20px;
display: inline-block;
transition: color 0.3s;
}
.contact a:hover {
color: #ff0066;
}
/* Footer */
footer {
padding: 20px;
text-align: center;
background-color: #131212;
color: #777;
}
/* Keyframes for fade-in animation */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav>
<div class="logo">ZeroTrace</div>
<div class="menu-toggle"><i class="fas fa-bars"></i></div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#articles">Articles</a></li>
<li><a href="#payment">Payment</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Hero Section -->
<section id="home" class="home">
<div class="hero">
<h1 class="glow">Welcome to ZeroTrace</h1>
<p>Your gateway to expert hacking services</p>
</div>
<!-- Services Section -->
<section id="services" class="services">
<h2>Our Services</h2>
<div class="service-card">
<i class="fas fa-key"></i>
<h3>Website Leaks </h3>
<p>Your source for exclusive, high-value data leaks from the web's most secure corners.</p>
</div>
<div class="service-card">
<i class="fas fa-user-secret"></i>
<h3>Private Credensials</h3>
<p>Secure access to exclusive credentials like passports, driver's licenses, credit cards, and more—where privacy meets opportunity.</p>
</div>
<div class="service-card">
<i class="fas fa-lock"></i>
<h3>Company Data</h3>
<p>Company Data Ltd is the go-to source for leaked information, offering exclusive data on Ltd, LLC, and LKD entities—perfect for those looking to gain an edge in the market.</p>
</div>
<div class="service-card">
<i class="fas fa-shield-alt"></i>
<h3>Secure Data Transfer</h3>
<p>We ensure your transactions are secure and your conversations confidential, providing you with leaked data without a trace</p>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<h2>About Us</h2>
<p>Our dedicated team operates worldwide, combining expertise and local knowledge to deliver reliable and comprehensive information tailored to your needs. We understand the importance of privacy, which is why we guarantee secure transactions and confidential conversations throughout the data exchange process.
Trusted by our clients, we pride ourselves on our reputation for excellence and discretion. Join us and unlock the insights that can drive your success.</p>
</section>
<!-- Articles Section -->
<section id="articles" class="articles">
<h2>Latest Articles</h2>
<div class="article">
<h3>Latest Data Leak Exposes Millions of Personal Records</h3>
<p>A significant data leak has emerged, compromising the personal records of millions. This incident has raised alarms across the cybersecurity community and among organizations worldwide.
What Happened?
A sophisticated hacking group exploited vulnerabilities in major corporations, leaking sensitive information such as names, addresses, email addresses, phone numbers, and financial details. The breach impacts multiple industries, from healthcare to e-commerce.
How Did It Happen?
Hackers accessed the data through phishing attacks and unpatched software vulnerabilities. They deployed malware to collect sensitive information over several months, culminating in a massive dump on the dark web.
Impact on Individuals and Businesses
For individuals, this exposure increases the risk of identity theft and fraud. For businesses, the repercussions include financial loss, reputational damage, legal issues, and a decline in customer trust.</p>
</div>
<div class="article">
<h3>Massive Data Breach at a Major Social Media Platform Exposes User Information</h3>
<p>In a startling revelation, a significant data breach has occurred at one of the world's leading social media platforms, affecting millions of users globally. This incident has raised serious concerns about data privacy and cybersecurity practices in the tech industry.
What Happened?
The breach reportedly exposed the personal information of approximately 400 million users, including names, phone numbers, and account details. This leak was discovered by security researchers who found an unprotected database containing the sensitive data available on the dark web.
How Did It Happen?
Initial investigations suggest that the hackers exploited a vulnerability in the platform's application programming interface (API). By leveraging this flaw, they were able to gain unauthorized access to user data, which was then sold to third parties. The incident highlights a critical gap in the platform's security measures, prompting calls for better oversight and protection of user information.
Impact on Users and the Company
For users, the implications of this breach are significant. Exposed personal data increases the risk of identity theft and phishing attacks. Users are advised to change their passwords and enable two-factor authentication to protect their accounts.
The social media platform faces potential legal repercussions and damage to its reputation. With growing scrutiny over data privacy, regulators may impose fines and mandates to enhance user protection.</p>
</div>
</section>
<!-- Payment Section -->
<section id="payment" class="payment">
<h2>Payment Methods</h2>
<div class="payment-methods">
<!-- Bitcoin Payment -->
<a href="#"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bitcoin.svg/1200px-Bitcoin.svg.png" alt="Bitcoin" class="payment-icon"></a>
<!-- Ethereum Payment -->
<a href="#"><img src="https://upload.wikimedia.org/wikipedia/commons/6/6f/Ethereum-icon-purple.svg" alt="Ethereum" class="payment-icon"></a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<h3>Send your Telegram Uname we will contact u</h3>
<a href="mailto:[email protected]">[email protected]</a>
</section>
<!-- Footer -->
<footer>
<p>© 2025 ZeroTrace. All Rights Reserved.</p>
</footer>
<script>
// Mobile menu toggle
const menuToggle = document.querySelector('.menu-toggle');
const navLinks = document.querySelector('.nav-links');
menuToggle.addEventListener('click', () => {
navLinks.classList.toggle('active');
});
</script>
<script>
// Disable right-click context menu
document.addEventListener('contextmenu', function (e) {
e.preventDefault();
}, false);
// Disable common keyboard shortcuts for developer tools
document.addEventListener('keydown', function (e) {
if (e.key === 'F12' ||
(e.ctrlKey && e.shiftKey && (e.key === 'I' || e.key === 'J')) ||
(e.ctrlKey && e.key === 'U')) {
e.preventDefault();
}
}, false);
// Disable copy (Ctrl+C) and cut (Ctrl+X)
document.addEventListener('keydown', function (e) {
if (e.ctrlKey && (e.key === 'C' || e.key === 'X')) {
e.preventDefault();
}
});
// Prevent drag-and-drop for content
document.addEventListener('dragstart', function (e) {
e.preventDefault();
}, false);
</script>
</body>
</html>