-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (131 loc) · 4.05 KB
/
Copy pathindex.html
File metadata and controls
150 lines (131 loc) · 4.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IP F1ND</title>
<style>
/* Global Reset for better sizing */
* {
box-sizing: border-box;
}
body {
background-color: #0d1117;
color: #58a6ff;
font-family: 'Courier New', Courier, monospace;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh; /* Changed to min-height for better scrolling on small screens */
margin: 0;
padding: 20px;
}
.container {
background-color: #161b22;
padding: 2rem;
border-radius: 8px;
border: 1px solid #30363d;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
width: 100%; /* Responsive width */
max-width: 400px; /* Limits size on desktop */
text-align: center;
}
h2 {
color: #f0f6fc;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 1.5rem;
}
input {
width: 100%; /* Full width of container */
padding: 12px;
background: #0d1117;
border: 1px solid #30363d;
color: #bc8cff;
border-radius: 4px;
margin-bottom: 1rem;
outline: none;
font-size: 16px; /* Prevents auto-zoom on iOS */
}
input:focus {
border-color: #58a6ff;
}
button {
width: 100%; /* Easier to tap on mobile */
padding: 12px 20px;
background-color: #238636;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
font-size: 1rem;
transition: background 0.2s;
}
button:active {
background-color: #2ea043;
transform: scale(0.98); /* Visual feedback for touch */
}
#result {
margin-top: 1.5rem;
padding: 10px;
min-height: 60px;
border-top: 1px solid #30363d;
word-wrap: break-word;
font-size: 0.95rem;
}
.loading {
color: #d29922;
}
.success {
color: #3fb950;
font-weight: bold;
}
/* Responsive adjustments for very small screens */
@media (max-width: 350px) {
.container {
padding: 1rem;
}
h2 {
font-size: 1.2rem;
}
}
</style>
</head>
<body>
<div class="container">
<h2>IP F1NDER</h2>
<input type="text" id="targetName" placeholder="Enter username..." autocomplete="off">
<br>
<button onclick="findIP()">F1ND</button>
<div id="result">
Waiting for input...
</div>
</div>
<script>
// Generate 100 fake IPs
const fakeIPs = [];
for (let i = 0; i < 100; i++) {
const ip = `${Math.floor(Math.random() * 255)}.${Math.floor(Math.random() * 255)}.${Math.floor(Math.random() * 255)}.${Math.floor(Math.random() * 255)}`;
fakeIPs.push(ip);
}
function findIP() {
const name = document.getElementById('targetName').value;
const display = document.getElementById('result');
if (!name.trim()) {
display.innerHTML = "<span style='color: #f85149;'>Please enter a name!</span>";
return;
}
display.innerHTML = "<span class='loading'>Bypassing firewalls...</span>";
setTimeout(() => {
const randomIP = fakeIPs[Math.floor(Math.random() * fakeIPs.length)];
display.innerHTML = `
<div style="color: #8b949e; font-size: 0.8rem; margin-bottom: 5px;">Target: ${name}</div>
<div class="success">IP FOUND: ${randomIP}</div>
`;
}, 1200);
}
</script>
</body>
</html>