-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
208 lines (196 loc) · 7.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DorkTerm</title>
<!-- Font Awesome -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet"
/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #000;
color: #0f0;
font-family: "Courier New", Courier, monospace;
}
.navbar {
background-color: #000;
border-bottom: 2px solid #0f0;
}
.navbar-brand {
color: #0f0;
font-weight: bold;
}
.navbar-brand:hover {
color: #fff;
}
.search-input {
background-color: #000;
border: 2px solid #0f0;
color: #0f0;
border-radius: 5px;
padding: 10px 15px;
font-size: 1.1rem;
}
.search-input:focus {
outline: none;
box-shadow: 0 0 10px #0f0;
}
.run-btn {
background-color: #0f0;
border: 1px solid #000;
color: #000;
padding: 10px 20px;
font-weight: bold;
border-radius: 5px;
font-size: 1rem;
}
.run-btn:hover {
background-color: #0b0;
color: #fff;
}
.card {
background-color: #000;
border: 2px solid #0f0;
padding: 20px;
}
footer {
background-color: #000;
color: #0f0;
padding: 10px 0;
text-align: center;
border-top: 2px solid #0f0;
}
.info-box {
border: 1px dashed #0f0;
padding: 15px;
margin-top: 20px;
font-size: 0.9rem;
}
.info-box h4 {
text-decoration: underline;
}
a {
color: #0f0;
text-decoration: underline;
}
a:hover {
color: #fff;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="container">
<a class="navbar-brand" href="https://github.com/yogsec">YOGSEC</a>
</div>
</nav>
<div class="container mt-5">
<div style="color:white;" class="card">
<h1 class="text-center">DorkTerm</h1>
<div class="mb-3">
<label for="domainInput" class="form-label">Enter a target/domain:</label>
<input type="text" class="form-control search-input" id="domainInput" placeholder="e.g., example.com">
</div>
<div class="text-center">
<button class="run-btn" onclick="runGoogleDorks()">Run</button>
</div>
<div style="color:white;" class="info-box mt-4">
<h4>What does this tool do?</h4>
<p>
This tool runs a series of Google Dork queries against the provided domain to identify potential vulnerabilities or exposed sensitive information.
</p>
<h4>What types of Google Dorks will run?</h4>
<ul>
<li><code>site:example.com inurl:login</code> - Searches for login pages</li>
<li><code>site:example.com inurl:admin</code> - Searches for admin pages</li>
<li><code>site:example.com ext:php</code> - Searches for PHP files</li>
<li><code>site:example.com ext:sql</code> - Searches for SQL files</li>
<li><code>site:example.com ext:xml</code> - Searches for XML files</li>
<li><code>site:example.com ext:json</code> - Searches for JSON files</li>
<li><code>site:example.com "index of"</code> - Finds directory listing vulnerabilities</li>
<li><code>site:example.com filetype:log</code> - Searches for log files</li>
<li><code>site:example.com filetype:txt</code> - Searches for text files</li>
<li><code>site:example.com inurl:wp-content</code> - Identifies WordPress content directories</li>
</ul>
<h4>How to enable popups?</h4>
<p>
If the Google Dork results do not open in new tabs, make sure your browser allows popups for this site. Refer to your browser's <a href="https://support.google.com/chrome/answer/95472?hl=en" target="_blank">popup settings</a> for more details.
</p>
</div>
</div>
</div>
<footer>
<section class="mb-4">
<!-- Twitter -->
<a
data-mdb-ripple-init class="btn text-white btn-floating m-1"
style="background-color: #55acee;"
href="https://x.com/yogsec"
role="button"
><i class="fab fa-twitter"></i
></a>
<!-- Instagram -->
<a
data-mdb-ripple-init class="btn text-white btn-floating m-1"
style="background-color: #ac2bac;"
href="https://www.instagram.com/yogsec.io/"
role="button"
><i class="fab fa-instagram"></i
></a>
<!-- Linkedin -->
<a
data-mdb-ripple-init class="btn text-white btn-floating m-1"
style="background-color: #0082ca;"
href="https://www.linkedin.com/company/yogsec"
role="button"
><i class="fab fa-linkedin-in"></i
></a>
<!-- Github -->
<a
data-mdb-ripple-init class="btn text-white btn-floating m-1"
style="background-color: #333333;"
href="https://github.com/yogsec"
role="button"
><i class="fab fa-github"></i
></a>
</section>
</footer>
<script>
function runGoogleDorks() {
const domain = document.getElementById('domainInput').value.trim();
if (!domain) {
alert('Please enter a valid domain.');
return;
}
const dorks = [
`site:${domain} inurl:login`,
`site:${domain} inurl:admin`,
`site:${domain} ext:php`,
`site:${domain} ext:sql`,
`site:${domain} ext:xml`,
`site:${domain} ext:json`,
`site:${domain} "index of"`,
`site:${domain} filetype:log`,
`site:${domain} filetype:txt`,
`site:${domain} inurl:wp-content`
];
dorks.forEach((dork, index) => {
setTimeout(() => {
const url = `https://www.google.com/search?q=${encodeURIComponent(dork)}`;
window.open(url, '_blank');
}, index * 200); // Open a new tab every 200ms
});
}
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>