Datasets:
Tanvir1337
commited on
Commit
•
61538dd
1
Parent(s):
3318b27
init gdorks_bug_bounty.md
Browse files- gdorks_bug_bounty.md +246 -0
gdorks_bug_bounty.md
ADDED
@@ -0,0 +1,246 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### Broad domain search w/ negative search <!--omit-->
|
2 |
+
|
3 |
+
```
|
4 |
+
site:example.com -www -shop -share -ir -mfa
|
5 |
+
```
|
6 |
+
|
7 |
+
### PHP extension w/ parameters
|
8 |
+
|
9 |
+
```
|
10 |
+
site:example.com ext:php inurl:?
|
11 |
+
```
|
12 |
+
|
13 |
+
### API Endpoints
|
14 |
+
|
15 |
+
```
|
16 |
+
site:example[.]com inurl:api | site:*/rest | site:*/v1 | site:*/v2 | site:*/v3
|
17 |
+
```
|
18 |
+
|
19 |
+
### Juicy Extensions
|
20 |
+
|
21 |
+
```
|
22 |
+
site:"example[.]com" ext:log | ext:txt | ext:conf | ext:cnf | ext:ini | ext:env | ext:sh | ext:bak | ext:backup | ext:swp | ext:old | ext:~ | ext:git | ext:svn | ext:htpasswd | ext:htaccess | ext:json
|
23 |
+
```
|
24 |
+
|
25 |
+
### High % inurl keywords
|
26 |
+
|
27 |
+
```
|
28 |
+
inurl:conf | inurl:env | inurl:cgi | inurl:bin | inurl:etc | inurl:root | inurl:sql | inurl:backup | inurl:admin | inurl:php site:example[.]com
|
29 |
+
```
|
30 |
+
|
31 |
+
### Server Errors
|
32 |
+
|
33 |
+
```
|
34 |
+
inurl:"error" | intitle:"exception" | intitle:"failure" | intitle:"server at" | inurl:exception | "database error" | "SQL syntax" | "undefined index" | "unhandled exception" | "stack trace" site:example[.]com
|
35 |
+
```
|
36 |
+
|
37 |
+
### XSS prone parameters
|
38 |
+
|
39 |
+
```
|
40 |
+
inurl:q= | inurl:s= | inurl:search= | inurl:query= | inurl:keyword= | inurl:lang= inurl:& site:example.com
|
41 |
+
```
|
42 |
+
|
43 |
+
### Open Redirect prone parameters
|
44 |
+
|
45 |
+
```
|
46 |
+
inurl:url= | inurl:return= | inurl:next= | inurl:redirect= | inurl:redir= | inurl:ret= | inurl:r2= | inurl:page= inurl:& inurl:http site:example.com
|
47 |
+
```
|
48 |
+
|
49 |
+
### SQLi Prone Parameters
|
50 |
+
|
51 |
+
```
|
52 |
+
inurl:id= | inurl:pid= | inurl:category= | inurl:cat= | inurl:action= | inurl:sid= | inurl:dir= inurl:& site:example.com
|
53 |
+
```
|
54 |
+
|
55 |
+
### SSRF Prone Parameters
|
56 |
+
|
57 |
+
```
|
58 |
+
inurl:http | inurl:url= | inurl:path= | inurl:dest= | inurl:html= | inurl:data= | inurl:domain= | inurl:page= inurl:& site:example.com
|
59 |
+
```
|
60 |
+
|
61 |
+
### LFI Prone Parameters
|
62 |
+
|
63 |
+
```
|
64 |
+
inurl:include | inurl:dir | inurl:detail= | inurl:file= | inurl:folder= | inurl:inc= | inurl:locate= | inurl:doc= | inurl:conf= inurl:& site:example.com
|
65 |
+
```
|
66 |
+
|
67 |
+
### RCE Prone Parameters
|
68 |
+
|
69 |
+
```
|
70 |
+
inurl:cmd | inurl:exec= | inurl:query= | inurl:code= | inurl:do= | inurl:run= | inurl:read= | inurl:ping= inurl:& site:example.com
|
71 |
+
```
|
72 |
+
|
73 |
+
### File upload endpoints
|
74 |
+
|
75 |
+
```
|
76 |
+
site:example.com ”choose file”
|
77 |
+
```
|
78 |
+
|
79 |
+
### API Docs
|
80 |
+
|
81 |
+
```
|
82 |
+
inurl:apidocs | inurl:api-docs | inurl:swagger | inurl:api-explorer site:"example[.]com"
|
83 |
+
```
|
84 |
+
|
85 |
+
### Login Pages
|
86 |
+
|
87 |
+
```
|
88 |
+
inurl:login | inurl:signin | intitle:login | intitle:signin | inurl:secure site:example[.]com
|
89 |
+
```
|
90 |
+
|
91 |
+
### Test Environments
|
92 |
+
|
93 |
+
```
|
94 |
+
inurl:test | inurl:env | inurl:dev | inurl:staging | inurl:sandbox | inurl:debug | inurl:temp | inurl:internal | inurl:demo site:example.com
|
95 |
+
```
|
96 |
+
|
97 |
+
### Sensitive Documents
|
98 |
+
|
99 |
+
```
|
100 |
+
site:example.com ext:txt | ext:pdf | ext:xml | ext:xls | ext:xlsx | ext:ppt | ext:pptx | ext:doc | ext:docx
|
101 |
+
intext:“confidential” | intext:“Not for Public Release” | intext:”internal use only” | intext:“do not distribute”
|
102 |
+
```
|
103 |
+
|
104 |
+
### Sensitive Parameters
|
105 |
+
|
106 |
+
```
|
107 |
+
inurl:email= | inurl:phone= | inurl:password= | inurl:secret= inurl:& site:example[.]com
|
108 |
+
```
|
109 |
+
|
110 |
+
### Adobe Experience Manager (AEM)
|
111 |
+
|
112 |
+
```
|
113 |
+
inurl:/content/usergenerated | inurl:/content/dam | inurl:/jcr:content | inurl:/libs/granite | inurl:/etc/clientlibs | inurl:/content/geometrixx | inurl:/bin/wcm | inurl:/crx/de site:example[.]com
|
114 |
+
```
|
115 |
+
|
116 |
+
### Disclosed XSS and Open Redirects
|
117 |
+
|
118 |
+
```
|
119 |
+
site:openbugbounty.org inurl:reports intext:"example.com"
|
120 |
+
```
|
121 |
+
|
122 |
+
### Google Groups
|
123 |
+
|
124 |
+
```
|
125 |
+
site:groups.google.com "example.com"
|
126 |
+
```
|
127 |
+
|
128 |
+
### Code Leaks
|
129 |
+
|
130 |
+
```
|
131 |
+
site:pastebin.com "example.com"
|
132 |
+
```
|
133 |
+
|
134 |
+
```
|
135 |
+
site:jsfiddle.net "example.com"
|
136 |
+
```
|
137 |
+
|
138 |
+
```
|
139 |
+
site:codebeautify.org "example.com"
|
140 |
+
```
|
141 |
+
|
142 |
+
```
|
143 |
+
site:codepen.io "example.com"
|
144 |
+
```
|
145 |
+
|
146 |
+
### Cloud Storage
|
147 |
+
|
148 |
+
```
|
149 |
+
site:s3.amazonaws.com "example.com"
|
150 |
+
```
|
151 |
+
|
152 |
+
```
|
153 |
+
site:blob.core.windows.net "example.com"
|
154 |
+
```
|
155 |
+
|
156 |
+
```
|
157 |
+
site:googleapis.com "example.com"
|
158 |
+
```
|
159 |
+
|
160 |
+
```
|
161 |
+
site:drive.google.com "example.com"
|
162 |
+
```
|
163 |
+
|
164 |
+
```
|
165 |
+
site:dev.azure.com "example[.]com"
|
166 |
+
```
|
167 |
+
|
168 |
+
```
|
169 |
+
site:onedrive.live.com "example[.]com"
|
170 |
+
```
|
171 |
+
|
172 |
+
```
|
173 |
+
site:digitaloceanspaces.com "example[.]com"
|
174 |
+
```
|
175 |
+
|
176 |
+
```
|
177 |
+
site:sharepoint.com "example[.]com"
|
178 |
+
```
|
179 |
+
|
180 |
+
```
|
181 |
+
site:s3-external-1.amazonaws.com "example[.]com"
|
182 |
+
```
|
183 |
+
|
184 |
+
```
|
185 |
+
site:s3.dualstack.us-east-1.amazonaws.com "example[.]com"
|
186 |
+
```
|
187 |
+
|
188 |
+
```
|
189 |
+
site:dropbox.com/s "example[.]com"
|
190 |
+
```
|
191 |
+
|
192 |
+
```
|
193 |
+
site:box.com/s "example[.]com"
|
194 |
+
```
|
195 |
+
|
196 |
+
```
|
197 |
+
site:docs.google.com inurl:"/d/" "example[.]com"
|
198 |
+
```
|
199 |
+
|
200 |
+
### JFrog Artifactory
|
201 |
+
|
202 |
+
```
|
203 |
+
site:jfrog.io "example[.]com"
|
204 |
+
```
|
205 |
+
|
206 |
+
### Firebase
|
207 |
+
|
208 |
+
```
|
209 |
+
site:firebaseio.com "example[.]com"
|
210 |
+
```
|
211 |
+
|
212 |
+
## Dorks that work better w/o domain
|
213 |
+
|
214 |
+
### Bug Bounty programs and Vulnerability Disclosure Programs <!--omit-->
|
215 |
+
|
216 |
+
```
|
217 |
+
"submit vulnerability report" | "powered by bugcrowd" | "powered by hackerone"
|
218 |
+
```
|
219 |
+
|
220 |
+
```
|
221 |
+
site:*/security.txt "bounty"
|
222 |
+
```
|
223 |
+
|
224 |
+
### Apache Server Status Exposed <!--omit-->
|
225 |
+
|
226 |
+
```
|
227 |
+
site:*/server-status apache
|
228 |
+
```
|
229 |
+
|
230 |
+
### WordPress <!--omit-->
|
231 |
+
|
232 |
+
```
|
233 |
+
inurl:/wp-admin/admin-ajax.php
|
234 |
+
```
|
235 |
+
|
236 |
+
### Drupal <!--omit-->
|
237 |
+
|
238 |
+
```
|
239 |
+
intext:"Powered by" & intext:Drupal & inurl:user
|
240 |
+
```
|
241 |
+
|
242 |
+
### Joomla <!--omit-->
|
243 |
+
|
244 |
+
```
|
245 |
+
site:*/joomla/login
|
246 |
+
```
|