-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
392 lines (349 loc) · 12.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ExploitInject Tools Hub</title>
<link rel="icon" type="image/x-icon" href="https://i.ibb.co/Y4LY8pCd/logo.png">
<!-- Recommended for better browser support -->
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', monospace;
cursor: none;
}
body {
background-color: #0a0a0a;
color: #00ff00;
min-height: 100vh;
overflow-x: hidden;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
/* Ensure the body takes at least the full viewport height */
}
main {
flex: 1;
/* This makes the main content area grow to fill available space */
}
.custom-cursor {
position: fixed;
width: 10px;
height: 10px;
background-color: #00ff00;
border-radius: 50%;
pointer-events: none;
z-index: 9999;
mix-blend-mode: difference;
}
h1 {
text-align: center;
padding: 2rem;
font-size: 2.5em;
text-shadow: 0 0 10px #00ff00;
margin-bottom: 1rem;
}
.search-container {
display: flex;
justify-content: center;
margin-bottom: 3rem;
}
.search-box {
padding: 0.8rem;
background: #001100;
border: 1px solid #00ff00;
color: #00ff00;
width: 300px;
margin-right: 1rem;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="%2300ff88"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>'), pointer;
}
.search-btn {
padding: 0.8rem 1.5rem;
background: #002200;
border: 1px solid #00ff00;
color: #00ff00;
cursor: pointer;
transition: all 0.3s;
}
.search-btn:hover {
background: #00ff00;
color: #000;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>'), auto;
}
.cards-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.card {
background: #001100;
border: 1px solid #00ff00;
padding: 1.5rem;
height: 200px;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 0 15px #00ff00;
}
.card-content {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
text-align: center;
padding: 1rem;
}
.card-content h3 {
margin: 0.5rem 0;
color: #00ff00;
font-size: 1.2em;
text-shadow: 0 0 5px #00ff00;
}
.card-content p {
font-size: 0.9em;
color: #00ff00;
opacity: 0.8;
line-height: 1.4;
}
.card-content::before {
content: ">";
position: absolute;
left: 10px;
top: 10px;
color: #00ff00;
opacity: 0.5;
}
.card-content::after {
content: "_";
position: absolute;
right: 10px;
bottom: 10px;
color: #00ff00;
opacity: 0.5;
animation: blink 1s infinite;
}
.footer {
margin-top: auto;
/* Push the footer to the bottom */
padding: 30px;
text-align: center;
color: #00ff00;
/* Green text color */
border-top: 1px solid #00ff00;
/* Green border */
background-color: #001100;
/* Dark background */
backdrop-filter: blur(5px);
}
.developer-text {
font-size: 1.2em;
/* Adjusted font size */
color: #00ff00;
/* Green text color */
margin-top: 10px;
}
.github-link {
color: #00ff00;
/* Green text color */
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
margin-left: 10px;
font-size: 1em;
}
.github-link:hover {
color: #00cc77;
/* Lighter green on hover */
text-decoration: underline;
text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
/* Glow effect */
}
@keyframes blink {
0% {
opacity: 0
}
50% {
opacity: 1
}
100% {
opacity: 0
}
}
.card:hover::before {
left: 100%;
}
@media (max-width: 768px) {
.cards-container {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.cards-container {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="custom-cursor"></div>
<h1>ExploitInject Tools Hub</h1>
<div class="search-container">
<input type="text" class="search-box" placeholder="Search tools...">
<button class="search-btn">SEARCH</button>
</div>
<div class="cards-container">
<div class="card" onclick="window.location.href='linux-commands.html'">
<div class="card-content">
🐧💻<br>
<h3>Linux All Commands</h3>
<p>Comprehensive guide to Linux commands and their usage</p>
</div>
</div>
<div class="card" onclick="window.location.href='passwordGenerator.html'">
<div class="card-content">
🔐🛠️<br>
<h3>Password Generator</h3>
<p>Create strong and secure passwords instantly</p>
</div>
</div>
<div class="card" onclick="window.location.href='ytMultiScreen.html'">
<div class="card-content">
📺🖥️<br>
<h3>YouTube Multi-Screen Viewer</h3>
<p>Watch multiple YouTube videos simultaneously</p>
</div>
</div>
<div class="card" onclick="window.location.href='CCGenerators.html'">
<div class="card-content">
💳🔢<br>
<h3>CC Generator</h3>
<p>Generate valid credit card numbers instantly</p>
</div>
</div>
<div class="card" onclick="window.location.href='ip2Location.html'">
<div class="card-content">
🌍📍<br>
<h3>IP to Location Tracker</h3>
<p>Track the location of any IP address</p>
</div>
</div>
<div class="card" onclick="window.location.href='ip_generator.html'">
<div class="card-content">
🌐🛠️<br>
<h3>Fake IP Generator</h3>
<p>Generate random fake IP addresses for testing and privacy</p>
</div>
</div>
<div class="card" onclick="window.location.href='ShortcutKeyOfComputers.html'">
<div class="card-content">
⌨️⚡<br>
<h3>Shortcut Keys of Computers</h3>
<p>Discover essential keyboard shortcuts to boost your productivity</p>
</div>
</div>
<div class="card" onclick="window.location.href='courses.html'">
<div class="card-content">
📚🛤️<br>
<h3>Courses Roadmap</h3>
<p>Explore the structured roadmap for various courses to guide your learning journey</p>
</div>
</div>
<!-- <div class="card" onclick="window.location.href='1.html'">
<div class="card-content">
🔍🛰️<br>
<h3>Network Scanner</h3>
<p>Discover vulnerabilities in network infrastructure</p>
</div>
</div>
<div class="card" onclick="window.location.href='2.html'">
<div class="card-content">
🔑💥<br>
<h3>Password Cracker</h3>
<p>Brute-force & dictionary attack simulation</p>
</div>
</div>
<div class="card" onclick="window.location.href='3.html'">
<div class="card-content">
🦠🕵️♂️<br>
<h3>Malware Analyzer</h3>
<p>Reverse engineering & behavior analysis</p>
</div>
</div>
<div class="card" onclick="window.location.href='4.html'">
<div class="card-content">
🌐🛡️<br>
<h3>VPN Toolkit</h3>
<p>Secure tunneling & anonymity solutions</p>
</div>
</div>
<div class="card" onclick="window.location.href='5.html'">
<div class="card-content">
📡🔒<br>
<h3>Encryption Suite</h3>
<p>Military-grade crypto implementations</p>
</div>
</div>
<div class="card" onclick="window.location.href='6.html'">
<div class="card-content">
🚨🔥<br>
<h3>Firewall Configurator</h3>
<p>Advanced packet filtering ruleset designer</p>
</div>
</div> -->
</div>
<footer class="footer">
<p class="developer-text">Developed by <a href="https://github.com/ExploitInject" class="github-link"
target="_blank">ExploitInject</a></p>
</footer>
<script>
// Custom cursor
const cursor = document.querySelector('.custom-cursor');
document.addEventListener('mousemove', (e) => {
cursor.style.left = e.clientX + 'px';
cursor.style.top = e.clientY + 'px';
});
// Add hover effect to interactive elements
const interactiveElements = document.querySelectorAll('button, .card, .search-box');
interactiveElements.forEach(element => {
element.addEventListener('mouseenter', () => {
cursor.style.transform = 'scale(2)';
});
element.addEventListener('mouseleave', () => {
cursor.style.transform = 'scale(1)';
});
});
// Search functionality
document.querySelector('.search-btn').addEventListener('click', () => {
const searchTerm = document.querySelector('.search-box').value.toLowerCase().trim();
const cards = document.querySelectorAll('.card');
let foundMatch = false;
cards.forEach(card => {
const cardTitle = card.querySelector('h3').textContent.toLowerCase();
const cardDescription = card.querySelector('p').textContent.toLowerCase();
if (cardTitle.includes(searchTerm) || cardDescription.includes(searchTerm)) {
card.style.display = 'block'; // Show the card
foundMatch = true;
} else {
card.style.display = 'none'; // Hide the card
}
});
if (!foundMatch) {
alert('No matching tools found.');
}
});
</script>
</body>
</html>