-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathdorks.txt
2181 lines (1829 loc) · 64.7 KB
/
dorks.txt
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
::::::::: :::: ::: ::::::::::: :::::::: :::::::::
:+: :+: +:+:+: :+:+: :+: :+: :+: :+: :+:
+:+ +:+ +:+ +:+:+ +:+ +:+ +:+ +:+ +:+
+#+ +:+ +#+ +:+ +#+ +#+ +#+ +#++:++#:
+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+
#+# #+# #+# #+# #+# #+# #+# #+# #+#
######### ### ### ### ######## ### ###
GDrok list by ishanoshada
Welcome to the Google Dork List - A Collection of Creative Google Hacking Queries!
Explore the power of Google dorks, specialized search queries that reveal hidden secrets, vulnerabilities, and more on the web. Use them responsibly for cybersecurity research, penetration testing, and understanding potential security risks.
------------------------------------------------------------------------
# Category: Website Vulnerabilities
intext:"error_reporting(E_ALL)" intitle:"phpinfo()" -github.com
intext:"sql_query" inurl:"admin.php" -github.com
inurl:"config.inc.php" OR inurl:"config/config.ini.php" OR inurl:"config/config.php" -github.com
intitle:"index of" intext:"wp-config.php" -github.com
inurl:"upload.php" intext:"File Upload" -github.com
inurl:"error_log" intext:"PHP Error logs" -github.com
inurl:"login.php" intext:"Login Page" -github.com
inurl:"login.html" intext:"Admin Login" -github.com
# Category: Exposed APIs
intext:"API_KEY" -github.com
inurl:"api/v1" -github.com
inurl:"swagger.json" -github.com
inurl:"/graphql" -github.com
inurl:"/api-docs" -github.com
inurl:"/api/v2" -github.com
inurl:"/api/v3" -github.com
# Category: Sensitive Information
intext:"-----BEGIN PRIVATE KEY-----" -github.com
intext:"client_secret" -github.com
intext:"password" filetype:env -github.com
intext:"apikey" filetype:env -github.com
intext:"username" filetype:env -github.com
intext:"jdbc.password" -github.com
intext:"oauth.token" -github.com
# Category: Download.php Files
inurl:download.php?file=
intitle:"Index of /" inurl:download.php
intitle:"Download" inurl:download.php
intitle:"Download File" inurl:download.php
intitle:"File Download" inurl:download.php
intitle:"Download Page" inurl:download.php
intitle:"Download Link" inurl:download.php
intitle:"Download Resource" inurl:download.php
intitle:"Download Center" inurl:download.php
intitle:"Download Manager" inurl:download.php
intitle:"Download Script" inurl:download.php
intitle:"File URL" inurl:download.php
intitle:"File Path" inurl:download.php
intitle:"Direct Download" inurl:download.php
intitle:"Downloadable File" inurl:download.php
intitle:"File Repository" inurl:download.php
intitle:"File Hosting" inurl:download.php
intitle:"File Distribution" inurl:download.php
intitle:"Downloadable Resource" inurl:download.php
# Category: Download.php Files with Parameter Names
inurl:download.php?file=
inurl:download.php?name=
inurl:download.php?filename=
inurl:download.php?download=
inurl:download.php?file_id=
inurl:download.php?file_name=
inurl:download.php?filepath=
inurl:download.php?resource=
inurl:download.php?item=
inurl:download.php?attachment=
inurl:download.php?doc=
inurl:download.php?type=
inurl:download.php?link=
inurl:download.php?url=
inurl:download.php?target=
inurl:download.php?source=
inurl:download.php?content=
inurl:download.php?document=
inurl:download.php?data=
inurl:download.php?product=
inurl:download.php?code=
inurl:download.php?key=
inurl:download.php?source_file=
inurl:download.php?output=
inurl:download.php?resource_path=
inurl:download.php?target_file=
inurl:download.php?resource_url=
inurl:download.php?file_path=
inurl:download.php?file_url=
inurl:download.php?attachment_id=
inurl:download.php?file_location=
inurl:download.php?file_path=
# Category: Download.php Files with Different URL Structures
inurl:"/downloads/download.php?file="
inurl:"/files/download.php?name="
inurl:"/file/download.php?filename="
inurl:"/dl/download.php?file="
inurl:"/dl/download.php?name="
inurl:"/dl/download.php?filename="
inurl:"/getfile/download.php?file="
inurl:"/getfile/download.php?name="
inurl:"/getfile/download.php?filename="
inurl:"/download-files/download.php?file="
inurl:"/download-files/download.php?name="
inurl:"/download-files/download.php?filename="
inurl:"/download-resource/download.php?file="
inurl:"/download-resource/download.php?name="
inurl:"/download-resource/download.php?filename="
inurl:"/file-download/download.php?file="
inurl:"/file-download/download.php?name="
inurl:"/file-download/download.php?filename="
inurl:"/content-download/download.php?file="
inurl:"/content-download/download.php?name="
inurl:"/content-download/download.php?filename="
inurl:"/resource-download/download.php?file="
inurl:"/resource-download/download.php?name="
inurl:"/resource-download/download.php?filename="
inurl:"/download-link/download.php?url="
inurl:"/download-link/download.php?link="
inurl:"/download-link/download.php?source="
inurl:"/download-link/download.php?content="
inurl:"/download-link/download.php?document="
# Category: Backup Files
intitle:"index of" "backup" -github.com
intitle:"index of" "backups" -github.com
inurl:"/backup/" -github.com
inurl:"/backup" -github.com
intext:"backup.sql" -github.com
intext:"backup.zip" -github.com
inurl:"/backup" filetype:zip -github.com
# Category: Login Pages
intitle:"Login" inurl:"admin" -github.com
intitle:"Sign In" inurl:"admin" -github.com
intitle:"Member Login" -github.com
intitle:"User Login" -github.com
intitle:"Staff Login" -github.com
# SQL Injection Vulnerabilities
inurl:index.php?id=
inurl:article.php?id=
inurl:gallery.php?id=
inurl:news.php?id=
inurl:product.php?id=
inurl:category.php?id=
inurl:content.php?id=
inurl:download.php?id=
inurl:profile.php?id=
inurl:shop.php?id=
inurl:show.php?id=
inurl:item.php?id=
inurl:review.php?id=
inurl:read.php?id=
inurl:faq.php?id=
inurl:search.php?id=
inurl:archive.php?id=
inurl:event.php?id=
inurl:calendar.php?id=
inurl:login.php?id=
inurl:register.php?id=
inurl:checkout.php?id=
inurl:confirm.php?id=
inurl:process.php?id=
# SQLi Error Messages
filetype:php intext:"SQL syntax"
filetype:asp inurl:"id=" intext:"OleDbException"
filetype:log intext:"You have an error in your SQL syntax"
# SQLi Vulnerable URLs
inurl:".php?param="
inurl:".php?id="
inurl:"page.php?id="
inurl:"product-detail.php?id="
inurl:"viewitem.php?id="
inurl:"news_detail.php?id="
inurl:"post.php?id="
inurl:"event.php?id="
inurl:"category.php?id="
inurl:"download.php?id="
inurl:"content.php?id="
# SQLi Vulnerable Parameters
inurl:"index.php?id="
inurl:"gallery.php?id="
inurl:"news.php?id="
inurl:"product.php?id="
inurl:"category.php?id="
inurl:"content.php?id="
inurl:"download.php?id="
inurl:"profile.php?id="
inurl:"shop.php?id="
inurl:"show.php?id="
inurl:"item.php?id="
inurl:"review.php?id="
inurl:"read.php?id="
inurl:"faq.php?id="
inurl:"search.php?id="
inurl:"archive.php?id="
inurl:"event.php?id="
inurl:"calendar.php?id="
inurl:"login.php?id="
inurl:"register.php?id="
inurl:"checkout.php?id="
inurl:"confirm.php?id="
inurl:"process.php?id="
# SQLi Vulnerable Parameters in Query String
inurl:*.php?*
inurl:*.asp?*
inurl:*.aspx?*
inurl:*.jsp?*
# SQLi Error-Based Messages
filetype:asp "OleDbException"
filetype:log "SQL syntax"
filetype:txt "SQL syntax error"
# SQLi Union-Based Messages
filetype:txt "union select"
filetype:log "union select"
# SQLi Error Messages with Database Information
filetype:txt "mysqli_num_rows()"
filetype:log "mysql_fetch_array()"
# SQLi Order By Statements
filetype:txt "ORDER BY"
filetype:log "ORDER BY"
# SQLi Vulnerable Websites
inurl:".php?category_id="
inurl:".php?product_id="
inurl:".php?article_id="
inurl:".php?post_id="
inurl:".php?event_id="
inurl:".php?calendar_id="
inurl:".php?news_id="
inurl:".php?item_id="
# SQLi Vulnerable Parameters with Error Messages
inurl:".php?id="
intext:"You have an error in your SQL syntax near"
intext:"SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near"
intext:"query failed: ERROR: parser: parse error"
# SQLi Vulnerable Login Pages
inurl:"login.php?username="
inurl:"login.aspx?user="
inurl:"signin.php?user="
inurl:"auth.php?user="
inurl:"signin.asp?user="
inurl:"login.jsp?user="
# SQLi Vulnerable Search Pages
inurl:"search.php?query="
inurl:"search.aspx?keyword="
inurl:"search.asp?q="
inurl:"search.jsp?query="
# SQLi Vulnerable User Profile Pages
inurl:"profile.php?user_id="
inurl:"profile.aspx?userid="
inurl:"user.php?id="
inurl:"user.aspx?user_id="
# SQLi Vulnerable Product Pages
inurl:"product.php?pid="
inurl:"product.aspx?id="
inurl:"item.php?item_id="
inurl:"item.aspx?prodid="
# SQLi Vulnerable Forum Pages
inurl:"forum.php?topic="
inurl:"forum.aspx?topic_id="
inurl:"thread.php?tid="
inurl:"thread.aspx?threadid="
# SQLi Vulnerable News Pages
inurl:"news.php?nid="
inurl:"news.aspx?newsid="
inurl:"article.php?article_id="
inurl:"article.aspx?id="
# SQLi Vulnerable Category Pages
inurl:"category.php?cat_id="
inurl:"category.aspx?id="
# SQLi Vulnerable Blog Pages
inurl:"blog.php?post_id="
inurl:"blog.aspx?id="
# SQLi Vulnerable Register Pages
inurl:"register.php?user="
inurl:"register.aspx?username="
inurl:"signup.php?username="
# SQLi Vulnerable Forgot Password Pages
inurl:"forgot_password.php?email="
inurl:"forgotpassword.aspx?email="
# SQLi Vulnerable Contact Pages
inurl:"contact.php?name="
inurl:"contact.aspx?fullname="
# SQLi Vulnerable Feedback Pages
inurl:"feedback.php?message="
inurl:"feedback.aspx?msg="
# SQLi Vulnerable Survey Pages
inurl:"survey.php?survey_id="
inurl:"survey.aspx?id="
# SQLi Vulnerable Poll Pages
inurl:"poll.php?id="
inurl:"poll.aspx?pollid="
# SQLi Vulnerable Comments Pages
inurl:"comments.php?post_id="
inurl:"comments.aspx?postid="
# SQLi Vulnerable CMS Pages
inurl:"cms.php?page_id="
inurl:"cms.aspx?id="
# SQLi Vulnerable E-commerce Pages
inurl:"checkout.php?order_id="
# Category: Cross-Site Scripting (XSS)
inurl:/search?query=<script>alert('XSS')</script>
inurl:/login?username=<script>alert('XSS')</script>
inurl:/signin?email=<script>alert('XSS')</script>
inurl:/register?fullname=<script>alert('XSS')</script>
inurl:/contact?message=<script>alert('XSS')</script>
inurl:/comment?text=<script>alert('XSS')</script>
inurl:/feedback?subject=<script>alert('XSS')</script>
inurl:/guestbook?message=<script>alert('XSS')</script>
inurl:/feedback?comment=<script>alert('XSS')</script>
inurl:/post?body=<script>alert('XSS')</script>
inurl:/search?q=<script>alert('XSS')</script>
inurl:/profile?username=<script>alert('XSS')</script>
inurl:/user?name=<script>alert('XSS')</script>
inurl:/about?content=<script>alert('XSS')</script>
inurl:/portfolio?project=<script>alert('XSS')</script>
inurl:/testimonial?feedback=<script>alert('XSS')</script>
# Category: XSS in JavaScript Files
filetype:js "<script>alert('XSS')</script>"
filetype:js "document.write('<script>alert('XSS')</script>')"
filetype:js "window.location.href='javascript:alert('XSS')'"
filetype:js "eval('<script>alert('XSS')</script>')"
# Category: XSS in HTML Files
filetype:html "<script>alert('XSS')</script>"
filetype:html "onload=alert('XSS')"
filetype:html "onclick=alert('XSS')"
filetype:html "onmouseover=alert('XSS')"
# Category: XSS in URL Parameters
inurl:/page?name=<script>alert('XSS')</script>
inurl:/search?query=<script>alert('XSS')</script>
inurl:/profile?id=<script>alert('XSS')</script>
inurl:/article?title=<script>alert('XSS')</script>
inurl:/post?id=<script>alert('XSS')</script>
inurl:/search?query=<script>alert('XSS')</script>
inurl:/view?item=<script>alert('XSS')</script>
inurl:/category?name=<script>alert('XSS')</script>
# Category: XSS in Form Fields
intext:"<form action" "<input type='text' onfocus='alert('XSS')'>"
intext:"<form action" "<textarea onfocus='alert('XSS')'></textarea>"
intext:"<form action" "<input type='password' onfocus='alert('XSS')'>"
intext:"<form action" "<input type='email' onfocus='alert('XSS')'>"
intext:"<form action" "<input type='url' onfocus='alert('XSS')'>"
intext:"<form action" "<input type='tel' onfocus='alert('XSS')'>"
intext:"<form action" "<input type='number' onfocus='alert('XSS')'>"
# Category: XSS in Event Handlers
intext:"<button onclick='alert('XSS')'>Click Me</button>"
intext:"<a href='#' onclick='alert('XSS')'>Click Here</a>"
intext:"<div onmouseover='alert('XSS')'>Hover Me</div>"
intext:"<img src='x' onerror='alert('XSS')'>"
intext:"<input type='text' onblur='alert('XSS')'>"
intext:"<select onchange='alert('XSS')'><option>Select</option></select>"
# Category: Exposed Documents
filetype:doc OR filetype:docx OR filetype:ppt OR filetype:pptx OR filetype:xls OR filetype:xlsx OR filetype:pdf -github.com
# Category: Exposed Source Code
inurl:"/src/" -github.com
inurl:"/source/" -github.com
inurl:"/code/" -github.com
inurl:"/src/" language:python -github.com
inurl:"/src/" language:java -github.com
inurl:"/src/" language:javascript -github.com
# Category: Wordpress Configuration Files
filetype:php intext:"DB_PASSWORD" -github.com
filetype:php intext:"DB_HOST" -github.com
filetype:php intext:"DB_USER" -github.com
filetype:php intext:"DB_NAME" -github.com
# Category: Open Directory Listings
intitle:"Index of /" + "backup" -github.com
intitle:"Index of /" + "uploads" -github.com
intitle:"Index of /" + "confidential" -github.com
# Category: Exposed Private Keys
filetype:txt "private_key" -github.com
filetype:txt "private.key" -github.com
filetype:txt "private_key.pem" -github.com
filetype:txt "private_key.txt" -github.com
# Category: Sensitive Files
filetype:log inurl:"access.log" -github.com
filetype:log inurl:"error.log" -github.com
filetype:log inurl:"debug.log" -github.com
filetype:log inurl:"application.log" -github.com
# Category: Open Redirect Vulnerabilities
inurl:"redirect?to=" -github.com
inurl:"out?url=" -github.com
inurl:"link?url=" -github.com
inurl:"/go?url=" -github.com
inurl:"/out?url=" -github.com
# Category: Git Repository Files
filetype:gitweb inurl:"/?a=summary" -github.com
filetype:git inurl:".gitignore" -github.com
filetype:git inurl:"config" -github.com
filetype:git inurl:"HEAD" -github.com
filetype:git inurl:"index" -github.com
filetype:git inurl:"packed-refs" -github.com
filetype:git inurl:"hooks" -github.com
filetype:git inurl:"info" -github.com
# Category: Network Devices
intitle:"RouterOS" inurl:"winbox" -github.com
intitle:"Ubiquiti" intext:"airOS" -github.com
intitle:"MikroTik" intext:"Webfig" -github.com
intitle:"Ubiquiti" intext:"Rocket M5" -github.com
intitle:"Ubiquiti" intext:"Rocket M2" -github.com
intitle:"Ubiquiti" intext:"RocketDish" -github.com
intitle:"Ubiquiti" intext:"NanoBeam" -github.com
# Category: Apache Tomcat
intitle:"Apache Tomcat" intext:"Apache Tomcat" -github.com
intitle:"Tomcat Manager Application" -github.com
intitle:"Apache Tomcat/7.0.5" intext:"If you're seeing this, you've successfully installed Tomcat." -github.com
intitle:"Tomcat Server Administration" -github.com
# Category: Wordpress Installation Files
filetype:log inurl:"wp-content/install.php" -github.com
filetype:log inurl:"wp-content/upgrade-log.php" -github.com
# Category: AWS Access Keys
filetype:pem intext:"AWS_ACCESS_KEY_ID" -github.com
# Category: Webcams
inurl:/view.shtml
intitle:"Live View / - AXIS"
intitle:"Live View / - AXIS 206M"
inurl:/control/userimage.html
intitle:"Toshiba Network Camera" user login
intitle:"i-Catcher Console - Web Monitor"
intitle:"Live NetSnap Cam-Server feed"
inurl:"/axis-cgi/mjpg"
intitle:"Live View / - AXIS 210"
intitle:"Live View / - AXIS 2400 Video Server"
inurl:/view/index.shtml
intitle:"Live View / - AXIS 240"
inurl:/mjpg/video.mjpg
intitle:"Live View / - AXIS 206W"
inurl:/axis-cgi/jpg
intitle:"Toshiba Network Camera" user login
intitle:"i-Catcher Console - Web Monitor"
intitle:"Live NetSnap Cam-Server feed"
# Category: Vulnerable Servers
intitle:"Test Page for the Apache Web Server on Fedora Core"
intitle:"Apache Status" "Server Version: Apache"
intitle:"Index of" "CentOS" "Test Page"
intitle:"Index of /" "Apache/2.2.3 (CentOS)"
intitle:"Test Page for the Nginx HTTP Server"
intitle:"Index of /" "Apache/2.2.3 (Ubuntu)"
intitle:"Index of /" "Apache/2.2.3 (Red Hat)"
intitle:"Index of /" "Apache/2.2.3 (Fedora)"
intitle:"Welcome to nginx!" "Welcome to nginx on Debian!"
# Category: Sensitive Directories
intitle:"Index of /admin"
intitle:"Index of /backup"
intitle:"Index of /config"
intitle:"Index of /database"
intitle:"Index of /logs"
intitle:"Index of /password"
intitle:"Index of /private"
intitle:"Index of /secret"
intitle:"Index of /temp"
intitle:"Index of /upload"
intitle:"Index of /www"
# Category: Database Files
filetype:sql intext:username password
filetype:sql "insert into" (pass|passwd|password)
filetype:sql "values" "username" "password"
filetype:sql "VALUES" "username" "password"
filetype:sql "CREATE USER" username identified by password
filetype:sql "CREATE USER" username identified by "password"
filetype:sql "CREATE USER" username identified by 'password'
filetype:sql "CREATE USER" username identified by PASSWORD
filetype:sql "GRANT ALL PRIVILEGES" ON database.* TO "username"@"%"
filetype:sql "GRANT ALL PRIVILEGES" ON database.* TO "username"@"localhost"
filetype:sql "GRANT ALL PRIVILEGES" ON *.* TO "username"@"%"
filetype:sql "GRANT ALL PRIVILEGES" ON *.* TO "username"@"localhost"
# Category: Cross-Site Scripting (XSS) Vulnerabilities
inurl:".php?param=<script>"
inurl:".aspx?param=<script>"
inurl:".jsp?param=<script>"
inurl:".cgi?param=<script>"
inurl:".js?param=<script>"
inurl:".html?param=<script>"
# Category: SQL Injection Vulnerabilities
inurl:".php?id="
inurl:".aspx?id="
inurl:".jsp?id="
inurl:".cgi?id="
inurl:".pl?id="
inurl:".cfm?id="
# Category: Remote Code Execution (RCE) Vulnerabilities
inurl:".php?cmd="
inurl:".aspx?cmd="
inurl:".jsp?cmd="
inurl:".cgi?cmd="
inurl:".pl?cmd="
inurl:".cfm?cmd="
# Category: Local File Inclusion (LFI) Vulnerabilities
inurl:".php?file="
inurl:".aspx?file="
inurl:".jsp?file="
inurl:".cgi?file="
inurl:".pl?file="
inurl:".cfm?file="
# Category: Directory Traversal Vulnerabilities
inurl:".php?dir="
inurl:".aspx?dir="
inurl:".jsp?dir="
inurl:".cgi?dir="
inurl:".pl?dir="
inurl:".cfm?dir="
# Category: Remote File Inclusion (RFI) Vulnerabilities
inurl:".php?file=http://"
inurl:".aspx?file=http://"
inurl:".jsp?file=http://"
inurl:".cgi?file=http://"
inurl:".pl?file=http://"
inurl:".cfm?file=http://"
# Category: Information Disclosure Vulnerabilities
inurl:".php?file=info"
inurl:".aspx?file=info"
inurl:".jsp?file=info"
inurl:".cgi?file=info"
inurl:".pl?file=info"
inurl:".cfm?file=info"
# Category: Server Misconfigurations
intitle:"Index of /private" OR "Index of /backup" OR "Index of /log" OR "Index of /logs"
# Category: Open Elasticsearch Instances
intitle:"Welcome to Elastic"
intitle:"ElasticSearch" AND "Cluster" AND "Summary"
intitle:"Kibana" AND "Elastic" AND "Console"
# Category: Open MongoDB Instances
intitle:"MongoDB Status"
intitle:"Mongodb Server Status"
# Category: Exposed Git Repositories
intitle:"Index of /.git"
# Category: Exposed Jenkins Instances
intitle:"Dashboard [Jenkins]"
intitle:"Dashboard [Hudson]"
# Category: Exposed Grafana Instances
intitle:"Grafana" inurl:/login
# Category: Exposed Jenkins Files
filetype:xml inurl:jenkins
# Category: Exposed SonarQube Instances
intitle:"SonarQube" inurl:/dashboard
# Category: Exposed Atlassian Confluence Instances
intitle:"Confluence" AND "Log In"
# Category: Exposed Atlassian JIRA Instances
intitle:"JIRA" AND "Log In"
# Category: Exposed Atlassian Bamboo Instances
intitle:"Bamboo" AND "Log in"
# Category: Exposed Atlassian Bitbucket Instances
intitle:"Bitbucket" AND "Log in"
# Category: Exposed Jenkins Groovy Scripts
filetype:groovy "Jenkins-CLI"
# Category: Exposed Jenkins Backup Files
filetype:zip OR filetype:tar.gz OR filetype:tar inurl:jenkins AND inurl:backup
# Category: Exposed Database Backup Files
filetype:sql inurl:backup
# Category: Exposed GitLab Instances
intitle:"GitLab" AND "Sign in"
# Category: Exposed Nexus Repository Manager Instances
intitle:"Nexus Repository Manager"
# Category: Exposed Artifactory Instances
intitle:"Artifactory Repository"
# Category: Exposed Sonatype Nexus Instances
# Category: Login Pages
intitle:"Login" inurl:/login
intitle:"Login" inurl:/signin
intitle:"Login" inurl:/log-in
intitle:"Login" inurl:/sign-in
intitle:"Login" inurl:/account/login
intitle:"Login" inurl:/user/login
intitle:"Login" inurl:/members/login
intitle:"Login" inurl:/auth/login
intitle:"Login" inurl:/signin
intitle:"Login" inurl:/log-in
intitle:"Login" inurl:/sign-in
intitle:"Login" inurl:/account/login
intitle:"Login" inurl:/user/login
intitle:"Login" inurl:/members/login
intitle:"Login" inurl:/auth/login
# Category: Network Devices
intitle:"RouterOS" inurl:/winbox
intitle:"Ubiquiti" intext:"airOS"
intitle:"MikroTik" intext:"Webfig"
intitle:"MikroTik" intext:"Chimay Red"
intitle:"Ubiquiti" intext:"Rocket M5"
intitle:"Ubiquiti" intext:"Rocket M2"
intitle:"Ubiquiti" intext:"RocketDish"
intitle:"Ubiquiti" intext:"NanoBeam"
intitle:"Ubiquiti" intext:"NanoStation"
intitle:"Ubiquiti" intext:"PowerBeam"
intitle:"Ubiquiti" intext:"LiteBeam"
intitle:"Ubiquiti" intext:"ToughSwitch"
intitle:"Ubiquiti" intext:"EdgeRouter"
intitle:"Ubiquiti" intext:"EdgeMax"
# Category: CCTV Systems
intitle:"DVR Login" inurl:/login.htm
intitle:"DVR User Login" inurl:/login.htm
intitle:"DVR User Login" inurl:/logon.htm
intitle:"DVR User Login" inurl:/login.html
intitle:"DVR User Login" inurl:/login.html
intitle:"DVR User Login" inurl:/logon.html
intitle:"DVR User Login" inurl:/login.asp
intitle:"DVR User Login" inurl:/logon.asp
intitle:"DVR User Login" inurl:/login.aspx
intitle:"DVR User Login" inurl:/logon.aspx
# Category: Apache Tomcat
intitle:"Apache Tomcat" intext:"Apache Tomcat"
intitle:"Tomcat Manager Application"
intitle:"Tomcat Status" "Tomcat Web Application Manager"
intitle:"Apache Tomcat/7.0.5" intext:"If you're seeing this, you've successfully installed Tomcat."
intitle:"Tomcat Server Administration"
intitle:"Tomcat Web Application Manager"
intitle:"Tomcat" intext:"Welcome to Tomcat"
intitle:"Apache Tomcat" intext:"Tomcat Server Administration"
intitle:"Apache Tomcat" intext:"Tomcat Web Application Manager"
# Category: Error Messages
intext:"Error 404: Not Found"
intext:"Error 403: Forbidden"
intext:"Error 500: Internal Server Error"
intext:"Error 502: Bad Gateway"
intext:"Error 503: Service Unavailable"
intext:"Error 504: Gateway Timeout"
intext:"Error 505: HTTP Version Not Supported"
intext:"Error 506: Variant Also Negotiates"
intext:"Error 507: Insufficient Storage"
intext:"Error 508: Loop Detected"
intext:"Error 509: Bandwidth Limit Exceeded"
intext:"Error 510: Not Extended"
intext:"Error 511: Network Authentication Required"
intext:"Error 520: Unknown Error"
intext:"Error 521: Web Server Is Down"
intext:"Error 522: Connection Timed Out"
intext:"Error 523: Origin Is Unreachable"
intext:"Error 524: A Timeout Occurred"
intext:"Error 525: SSL Handshake Failed"
intext:"Error 526: Invalid SSL Certificate"
intext:"Error 527: Railgun Error"
intext:"Error 529: Site is overloaded"
intext:"Error 530: Site is frozen"
intext:"Error 503: Backend is unhealthy"
intext:"Error 530: Origin DNS Error"
# Category: Git Repository Files
filetype:gitweb inurl:git
filetype:git "NOTICE OR LICENSE"
filetype:git "This file is a placeholder for the README file"
filetype:git "This file should contain a short description of the repository."
filetype:git "This file is used to list changes made in each version of the project."
filetype:git "This file contains important notes for the release."
filetype:git "This file is part of the git package."
filetype:git "This file contains release notes for the changes in each release."
# Category: Open Redirect Vulnerabilities
inurl:redir?url=
inurl:url=
inurl:redirect?url=
inurl:link?url=
inurl:out?url=
inurl:to?url=
inurl:go?url=
inurl:redirect?url=
inurl:open?url=
inurl:out?url=
inurl:leave?url=
# Category: Zero Vuln
inurl:"/.well-known/security.txt"
inurl:"/.well-known/security"
inurl:"/.git/HEAD"
inurl:"/.git/config"
inurl:"/.git/COMMIT_EDITMSG"
inurl:"/.git/description"
inurl:"/.git/hooks"
inurl:"/.git/index"
inurl:"/.git/refs"
inurl:"/.env"
inurl:"/.vscode/settings.json"
inurl:"/.vscode/extensions.json"
inurl:"/cgi-bin/config.bin"
inurl:"/cgi-bin/login.bin"
inurl:"/cgi-bin/param.bin"
inurl:"/cgi-bin/webcm"
inurl:"/cgi-bin/wpa.cgi"
inurl:"/cgi-bin/handler"
inurl:"/cgi-bin/status"
inurl:"/cgi-bin/Network"
inurl:"/cgi-bin/admin"
inurl:"/cgi-bin/testcgi"
inurl:"/cgi-bin/test-cgi"
inurl:"/cgi-bin/test"
inurl:"/cgi-bin/php"
inurl:"/cgi-bin/php5"
inurl:"/cgi-bin/php4"
inurl:"/cgi-bin/phpinfo"
inurl:"/cgi-bin/phpinfo.php"
inurl:"/cgi-bin/phptest.cgi"
inurl:"/cgi-bin/test.cgi"
inurl:"/cgi-bin/admin.cgi"
inurl:"/cgi-bin/admin.pl"
inurl:"/cgi-bin/test.pl"
inurl:"/cgi-bin/test.sh"
inurl:"/cgi-bin/status"
inurl:"/cgi-bin/webmail.cgi"
inurl:"/cgi-bin/php.ini"
inurl:"/cgi-bin/.htaccess"
inurl:"/cgi-bin/phpinfo.php"
inurl:"/cgi-bin/db.cgi"
inurl:"/cgi-bin/db.pl"
inurl:"/cgi-bin/sql.cgi"
inurl:"/cgi-bin/sqlite.cgi"
inurl:"/cgi-bin/db.php"
inurl:"/cgi-bin/db.pl"
inurl:"/cgi-bin/db2.cgi"
inurl:"/cgi-bin/dbtest.cgi"
inurl:"/cgi-bin/dbsql.cgi"
inurl:"/cgi-bin/dbsql.pl"
inurl:"/cgi-bin/mysql.cgi"
inurl:"/cgi-bin/mysql.pl"
inurl:"/cgi-bin/mysqlmanager.cgi"
inurl:"/cgi-bin/mysqlmanager.pl"
inurl:"/cgi-bin/mydb.cgi"
inurl:"/cgi-bin/oracle.cgi"
inurl:"/cgi-bin/dbconnect.cgi"
inurl:"/cgi-bin/mysqldb.cgi"
inurl:"/cgi-bin/websql.cgi"
inurl:"/cgi-bin/webdb.cgi"
inurl:"/cgi-bin/webdb2.cgi"
inurl:"/cgi-bin/webdbtest.cgi"
inurl:"/cgi-bin/acsscheduler.cgi"
inurl:"/cgi-bin/sqwebmail"
inurl:"/cgi-bin/w3-msql"
inurl:"/cgi-bin/dataweb"
inurl:"/cgi-bin/jam.pl"
inurl:"/cgi-bin/jamcgi"
inurl:"/cgi-bin/jamweb.cgi"
inurl:"/cgi-bin/jamtest.cgi"
inurl:"/cgi-bin/jamsql.cgi"
inurl:"/cgi-bin/sqldata"
inurl:"/cgi-bin/sqldb"
inurl:"/cgi-bin/sqlweb"
inurl:"/cgi-bin/sqlcgi"
inurl:"/cgi-bin/sqltest"
inurl:"/cgi-bin/sqlshell"
inurl:"/cgi-bin/sqlsh"
inurl:"/cgi-bin/lsdb"
inurl:"/cgi-bin/lsdb2"
inurl:"/cgi-bin/xsql"
inurl:"/cgi-bin/xsql2"
inurl:"/cgi-bin/webcgi"
inurl:"/cgi-bin/pagelog.cgi"
inurl:"/cgi-bin/getlog.cgi"
inurl:"/cgi-bin/testlog.cgi"
inurl:"/cgi-bin/logs.cgi"
inurl:"/cgi-bin/weblogs"
inurl:"/cgi-bin/testlogs"
# Category: Wordpress Sites
inurl:/wp-admin
inurl:/wp-login
inurl:/wp-content
inurl:/wp-includes
inurl:/xmlrpc.php
inurl:/readme.html
inurl:/license.txt
inurl:/wp-json
inurl:/wp-trackback
inurl:/wp-xmlrpc
inurl:/wp-links-opml
inurl:/wp-comments-post
inurl:/wp-feed
inurl:/wp-mail
inurl:/wp-rss
inurl:/wp-tag
inurl:/wp-embed
inurl:/wp-login.php?action=register
# Category: FTP Servers
intitle:"FTP root at"
intitle:"FTP Server" inurl:/ftp
intitle:"Index of /ftp"
intitle:"Index of /" "FTP root"
intitle:"Index of /" inurl:/ftp
# Category: Configuration Files
filetype:conf inurl:web.config
filetype:conf inurl:httpd.conf
filetype:conf inurl:php.ini
filetype:conf inurl:my.cnf
filetype:conf inurl:config.inc.php
filetype:conf inurl:config.php
filetype:conf inurl:settings.php
filetype:conf inurl:application.properties
filetype:conf inurl:application.yml
filetype:conf inurl:database.yml
filetype:conf inurl:connectionStrings.config
filetype:conf inurl:settings.xml
filetype:conf inurl:connections.xml
# Category: PHP Info Files
filetype:php inurl:info
filetype:php inurl:phpinfo
# Category: WordPress Configuration Files
filetype:txt inurl:wp-config
# Category: WordPress Backup Files
filetype:sql "WordPress" "backup"
# Category: Wordpress Installation Files
filetype:log inurl:wp-content/install.php
filetype:log inurl:wp-content/upgrade-log.php
# Category: Error Logs
filetype:log "PHP Fatal error" OR "PHP Parse error" OR "PHP Warning" OR "PHP Error"
# Category: Login Credentials
filetype:log "login" "password"
filetype:log "username" "password"
filetype:log "user" "pass"
# Category: Sensitive Information
filetype:log "secret_key"
filetype:log "password"
# Category: Open Directory Listings
intitle:"Index of /" + "backup"
# Category: AWS Access Keys
filetype:pem intext:PRIVATE KEY
# Category: Configuration Files
filetype:env intext:AWS_SECRET_ACCESS_KEY
# Category: Google Drive Links
inurl:"/uc?id="
# Category: Apache Access Logs
filetype:log inurl:apache.log
# Category: Nginx Access Logs
filetype:log inurl:nginx.log
# Category: Exposed Sensitive Files
filetype:doc OR filetype:docx OR filetype:xls OR filetype:xlsx OR filetype:ppt OR filetype:pptx
intitle:"Index of" (doc|docx|xls|xlsx|ppt|pptx)
# Category: Exposed Credentials
filetype:txt "username" AND "password"
filetype:txt "user" AND "pass"
filetype:log "login: *" AND "password: *"
# Category: Network Devices (Specific Brands)
intitle:"Ubiquiti" intext:"EdgeRouter"
intitle:"Ubiquiti" intext:"EdgeMax"
intitle:"Ubiquiti" intext:"UniFi Controller"
intitle:"MikroTik" intext:"RouterOS"
# Category: Directory Listings
intitle:"Index of /" "Parent Directory"
intitle:"Index of /" "Last modified"
intitle:"Index of /" "Name"
intitle:"Index of /" "Size"
intitle:"Index of /" "Description"
intitle:"Index of /" "Modified"
intitle:"Index of /" "Parent Directory"
intitle:"Index of /" "Windows 2003 Server"
# Category: Open Redirect Vulnerabilities (Specific URLs)
inurl:"redirect?to="
inurl:"out?to="
inurl:"go?to="
inurl:"to?url="
inurl:"link?to="
inurl:"url?url="
inurl:"redir?url="
# Category: WordPress Backup Files
filetype:zip "wp-content"
# Category: MongoDB Databases
inurl:/mongodb/port
# Category: MySQL Databases
intext:"-- phpMyAdmin SQL Dump"
# Category: PostgreSQL Databases
intext:"-- PostgreSQL database dump"
# Category: Oracle Databases
intext:"-- Oracle SQL Dump"
# Category: Microsoft SQL Server Databases
intext:"-- Dumping data for table"
# Category: FTP Servers (Specific Brands)
intitle:"FileZilla Server"
# Category: Open Elasticsearch Instances
inurl:"9200/_cat/indices"
# Category: Open MongoDB Instances
inurl:"27017"
# Category: Open Redis Instances
inurl:"6379"
# Category: Open Memcached Instances
inurl:"11211"
# Category: Open VNC Instances
inurl:"5800" OR inurl:"5900"
# Category: Open RDP Instances
inurl:"3389"
# Category: Open Telnet Instances
inurl:"23"