-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (102 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Page Finder</title>
<style>
body {
background-color: #000000; /* Dark background */
color: #00FF00; /* Neon green text */
font-family: 'Courier New', Courier, monospace; /* Code-like font */
text-align: center;
padding: 20px;
}
table {
border-collapse: collapse;
width: 70%;
margin: 20px auto;
box-shadow: 0 0 20px #00FF00, 0 0 10px #00FF00; /* Neon green glow */
}
th, td {
border: 1px solid #00FF00; /* Neon green border */
padding: 10px;
color: #00FF00;
}
th {
background-color: #003300; /* Dark green header */
font-size: 20px;
}
td {
background-color: #001a00; /* Darker green for rows */
font-size: 18px;
}
tr:hover {
background-color: #003300; /* Hover effect for rows */
}
input[type="text"], input[type="submit"] {
background-color: #001a00; /* Input background */
color: #00FF00; /* Input text color */
border: 2px solid #00FF00;
padding: 10px;
margin: 10px;
border-radius: 5px;
width: 80%;
box-shadow: 0 0 10px #00FF00, 0 0 5px #00FF00; /* Neon glow */
}
input[type="submit"] {
cursor: pointer;
width: 40%;
}
input[type="submit"]:hover {
background-color: #003300; /* Hover effect for button */
box-shadow: 0 0 20px #00FF00, 0 0 10px #00FF00; /* Stronger glow */
}
.spinner {
display: none;
margin-left: 10px;
}
h1 {
color: #00FF00; /* Neon green for title */
text-shadow: 0 0 10px #00FF00;
font-size: 40px;
margin-bottom: 20px;
}
h2 {
color: #FF0000; /* Red color for developer name */
font-size: 25px;
font-family: 'Comic Sans MS', cursive;
}
small {
color: #FFFFFF; /* White color for example text */
display: block;
margin: 20px 0;
}
a {
color: #FFA500; /* Orange for Subscribe button */
font-size: 18px;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Admin Page Finder</h1>
<h2>Developed By: <span>Alfaz</span></h2>
<form id="admin_finder_form" name="admin_finder" action="admin_finder.php" method="POST" onsubmit="showSpinner()">
<label for="base_url">Enter URL Here:</label><br>
<input type="text" id="base_url" name="base_url" placeholder="Enter URL Here ...">
<img src="https://www.top4top.io/images/loading.gif" class="spinner" id="spinner" width="30" height="30" alt="Loading...">
<br>
<input type="submit" name="go" value="Search">
</form>
<small>Example: https://www.example.com/admin/</small>
<a href="https://youtube.com/@alfazinfosec" target="_blank">SUBSCRIBE Alfaz InfoSec</a>
<script>
function showSpinner() {
document.getElementById('spinner').style.display = 'inline-block';
}
</script>
</body>
</html>