-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFiles_Containing_Juicy_Info.txt
More file actions
1746 lines (1746 loc) · 65.6 KB
/
Copy pathFiles_Containing_Juicy_Info.txt
File metadata and controls
1746 lines (1746 loc) · 65.6 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
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
site:.edu filetype:xls "root" database
intext:"proftpd.conf" "index of"
site:uat.* * inurl:login
site:preprod.* * inurl:login
intitle:"index of" setting.php
intext:"dhcpd.conf" "index of"
intitle:"/zircote/swagger-php"
intitle:index of /etc/openldap
intitle:"GlobalProtect Portal"
"PHP Fatal error:" ext:log OR ext:txt
inurl:/s3.amazonaws.com ext:xml intext:index of -site:github.com
inurl:pastebin intitle:mastercard
"configmap.yaml" | "config.yaml" | "*-config.yaml" intitle:"index of"
"rbac.yaml" | "role.yaml" | "rolebinding.yaml" | "*-rbac.yaml" intitle:"index of"
intitle:Index of "/etc/network" | "/etc/cni/net.d"
site:com inurl:invoice
intitle:"Index of /confidential"
inurl:"/wp-json/oembed/1.0/embed?url="
intext:"index of" web
inurl:* "auditing.txt"
intitle:"index of" cgi.pl
inurl:* "encryption.txt"
intitle:"index of" env.cgi
ext:java intext:"executeUpdate"
"Started by upstream project" ext:txt
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
(site:jsonformatter.org | site:codebeautify.org) & (intext:aws | intext:bucket | intext:password | intext:secret | intext:username)
site:.com "index of docker"
intext:"user" filetype:php intext:"account" inurl:/admin
inurl:"?url=http"
intitle:"Fleet Management Portal"
Google Dork
Google dorks
intext:"userfiles" intitle:"Index Of" site:*.com.*
intitle:"Index of" intext:"php" site:*.com.*
GHDB submissions -1
intitle:"Index of" intext:"config" site:*.com.*
intitle:index of db.py
intext:"index of" app
site:id filetype:sql
intext:"administrator" filetype:txt intext:"account" inurl:/admin , intext:"administrator" filetype:txt intext:"account" allinurl:
intitle:"phpinfo" site:*.com.* intext:"HTTP_HOST"
inurl:/HappyAxis.jsp
intext:"index of"store
intext:"index of" server.conf
site:*.* inurl:php_error.log - Sensitive information disclosure
site:*.*.* intitle:"index of" *.pcapng
intitle:"index of" "configuration.php"
Submission of New Google Dork
site:.edu intext:"robotics" inurl:/research
inurl:."install.appcenter.ms/orgs/"
inurl:typo3/index.php
site:*.ac.* filetype:template
site:*.edu.* filetype:template
filetype:log intext:"Account Number"
intitle:"WAMPSERVER Homepage"
inurl: /adminer.php
site:*.com */admin.txt
intext:"index of" "pins" site:*.com
intitle:index.of /logs.txt
site:s3.amazonaws.com "index of /"
filetype:txt CLAVE*.txt OR clave*.txt
intext:"Reportico" site:.com OR site:.org OR site:.net OR site:.gov OR site:.edu
site:*.ac.* intitle:"index of" *.ics
site:*.edu.* intitle:"index of" *.ics
inurl:"/wp-content/debug.log"
inurl:"/wp-includes/user.php" -site:wordpress.org -site:github.com -site:fossies.org
allinurl:"add_vhost.php?lang=english"
New GHDB Submission: Site Backup Index Exposure
intitle:"index of"Eventlog Analyzer
intitle:"index of" "wp-config.php.old" | "wp-config.php.backup"
intitle:"index of" inurl:/config/
New google dork for bitcoin - Saleh Lardhi
inurl:signup | inurl:sign-up | inurl:register | inurl:registration
site:*.edu.* inurl:globalprotect
inurl:pastebin "VISA"
Google Dork
intitle:"index of" private
intitle:"index of " *.js"
inurl: edu + site: admin
intext:"index of" "infophp()"
intitle:"index of" "secret.txt"
intitle:"index of" "config.php.txt"
inurl:adminpanel site:*.* -site:github.com
site:login.*.* | site:portal.*.*
intitle:"index of" "*robots.txt" site:.edu
inurl:"/database.json"
KCFinder Google Dork
Plone installation files
Concrete5 CMS files
intitle:"Index of /_MACOSX"
intitle:"Index of /vendor/guzzlehttp"
intitle:"Index of /flipbook"
intitle:"Index of /app/webroot/img"
intitle:"Index of /wp-includes/sitemaps"
intitle:"Index of /biuro"
intitle:"Index of /node_modules/"
intitle:"Index of /node"
intitle:"index of" "plesk-stat"
Re: New Dork Submission for Google Hacking Database !!
inurl:/admin.php
intext:"index of wp-content/uploads"
intitle:"index of" ec2 -aws
intitle:"index of" graphql-api
Google Docs data breach through dorks
Google Dork: inurl:"/bitrix/redirect.php?goto="
Open API Keys
intitle:index of "main.js"
Firewall Log Google Dork Submission
AWS Cloud Hosted Login Pages
intitle:"Index of /databases"
inurl: "index of" "phpstan.neon"
Reporting a New Google Dork : intitle: "index of" administrator
Reporting a New Google Dork : intitle:"index of" mysql inurl:./db/
Reporting a New Google Dork: intitle:index.of./.database
intext:"index of" "phpinfo" site:*.in
Fwd: site:.co.in intitle:index of /wp-admin
Re: site:www.openbugbounty.org intext:"xss" intext:"Unpatched"
inurl:"/cgi-bin/home.ha"
intitle:index.of login.js
site:.com intitle:"index of" /mobikwike
Submiting a google dork.
New submission
site:.com intitle:"index of"/sbi
site:.com intitle:"index of"/csb
"structure" + ext:sql
intitle:"index of" "/config/prod/"
Google Dorks
site:www.openbugbounty.org intext:"xss" intext:"Unpatched"
site:.co.in intitle:index of /wp-admin
intitle:"index of" "about-me"
"index of" "cloudapp.azure.com"
"index of" "cloudapp.net"
Fwd: intitle:"index of" "login" site:bd
Fwd: Google Dork: inurl:login/login-user
intitle:"index of" "/userlist/"
inurl:"xslt?PAGE=C_4_0"
index of /wp-admin.jpg site:bd
intitle:"Error log for /LM/".edu
"-- phpMyAdmin SQL Dump" ext:txt
intitle:index.of intext:log site:.bd
intitle:"index of" "postman_collection.json"
intitle:"Index of" inurl:/backup/ "wp-config"
intitle:"index of" intext: "login.php"
site:.com inurl:/signup.aspx
inurl:"/login.php" intitle:"admin"
site:linkedin.com intitle:"@gmail"
intitle:"Documentation Index" intext:"Apache Tomcat Servlet" inurl:"docs"
intitle:"index of" "npm-debug.log"
intitle:"index of" "backup.zip"
intitle:"index of" "creds.txt"
intitle:"index of" "C:Windows"
intitle:"index of" "login.php.txt"
intitle:"index of" "username.txt"
intitle:"index of" "configuration.txt"
intitle:"index of" "domain.txt"
intitle:"index of" "bugs.txt"
intitle:"index of" ".sql"
site: zoom+meeting+passcode
intitle:"Index of /api/"
intitle:"Index of /bank/"
inurl:php?id=1 site:com
inurl:"cf/assets" "MultiFileUpload.swf"
intitle:"index of /wp-content/plugins"
intitle:"index of" ".ssh" OR "ssh_config" OR "ssh_known_hosts" OR "authorized_keys" OR "id_rsa" OR "id_dsa"
inurl:wp-includes
For Google dork
index of: /aadhar
google dork give nginx.conf file
inurl:wp-config.txt intext:mysql
inurl:/phpMyAdmin/index.php?server=1
My name is Jannatul Adnin and I would like to report a new Google dork.
new google dork
allintext:static/uploads
inurl: /default.rdp
intitle:"index of" "pass.txt"
intitle:"index of" "config.txt"
Google dorks
RE: inurl:/wp-content/uploads/wpo_wcpdf
intext:"ArcGIS REST Services Directory" intitle:"Folder: /"
intitle:"index of" "profiler"
intitle:"index of" "private.properties"
allintitle:"macOS Server" site:.edu
inurl:wp-content/uploads/sites
intitle:"SCM Manager" intext:1.60
Files Containing Juicy Info
Vulnerable Files
intitle:"Sharing API Info"
intitle:"index of" github-api
intitle:"index of" google-maps-api
intitle:"Index of" inurl:/backup/ "admin.zip"
inurl:*/wp-content/plugins/contact-form-7/
Re: "index of /backup.sql
Re: intitle:index.of conf.php
inurl:wp-content/uploads/wcpa_uploads
inurl:/wp-login.php?action=register intext:"Register For This Site"
inurl:user intitle:"Drupal" intext:"Log in" -"powered by"
CMS Made Simple < 2.2.10 - SQL Injection
inurl:"php?sql=select" ext:php
inurl: /libraries/joomla/database/
intitle:"index of "phpunit.yml"
intext:"index of" inurl:jwks-rsa
intitle:"index of" "download.php?file="
intext:"index of" inurl:json-rpc
inurl:"wp-content" intitle:"index.of" intext:backup"
inurl:"wp-content" intitle:"index.of" intext:wp-config.php
Re: GHDB Dork
inurl: "/wp-content/uploads"
Google dork submission: intitle:"index of" "users.yml" | "admin.yml" | "config.yml"
Re: intitle:"index of" "docker-compose.yml"
intext:pom.xml intitle:"index of /"
intext:"Index of" intext:"backup.tar"
Index of" intext:"source_code.zip
intext:"Index of" intext:"backend/"
intext:"Index of" intext:"plugin/"
intext:"Index of" intext:"bitbucket-pipelines.yml"
intext:"Index of" intext:"/etc"
Re: Thank you for your submission! Re: intitle:index of db.sqlite3
About dorks
intitle:"index of" "properties.json"
intitle:"index of" "config.php"
intitle:"index of " "config/db"
inurl:"/private" intext:"index of /" "config"
inurl:info.php intext:"PHP Version" intitle:"phpinfo()"
intitle:"index of /" "styleci.yml" ".env"
inurl:"/private" intext:"index of /" inurl:"owncloud" -litespeed
inurl:"/private" intext:"index of /" "win64" -litespeed
inurl:":8080/" intext:"index of /" "win64" -LiteSpeed
inurl:".ir/" intext:"index of /" ".ovpn"
intitle:'Sypex Dumper" inurl:sxd
intext:"index of" downloads" site:*.*
GHDB-GOOGLE DORK
Dork Submission
intitle:"index of /" "docker-compose.yml" ".env"
intitle:"index of /" "public.zip"
intitle:"index of /" "admin.zip" "admin/"
intitle:"index of /" ".apk" inurl:".ir/"
inurl:"/scada-vis"
inurl:*/signIn.do
intitle:"index of" "config.html"
intitle:"index of " "shell.txt"
intitle:"index of "conf.json"
BroadBand Device Webserver
intitle:index of django/admin site:.*
intitle:"index of "application.yml"
allintitle:"VidyoRouter Configuration"
intitle:"Index of" site:.bd
intitle:"index of" inurl:admin/php
inurl:login/login
site:.in intext:"Index of" intitle:"index of"
inurl: "phpmyadmin/setup/"
site:.com intitle:index of /wp-admin
inurl:ssh intitle:index of /files
inurl:"/api-docs"
intitle:"index of" "checkout"
intitle:"index of" "database.sql"
Re: intext:"index of" "wp-content.zip" - Files Containing Juicy Info
intitle:"index of" inurl:wp-json index.json
intext:"index of" smb.conf
inurl:robots filetype:txt
intext:"index of" "wp-content.zip" - Files Containing Juicy Info
Re: New Dork Submission for Google Hacking Database !!
Inquiry about Search Results for intitle:"index.of" *S3
intitle:"index of" /etc/shadow
intitle:"index of" inurl:admin/login
allintitle:"ProjectDox Login"
intitle:"Index of /cam/"
intitle:"index of" intext:user inurl:data
Dork wp-config.bak - Exploit Title: intext: "index of" "wp-config.php.bak"
index of:admin.asp
New Google Dork Discovery: Indexof:admin site:*.com
intext:"index of" "config"
Index:Index of /wp-admin
intitle:"index of /" intext:".db
intext:phpMiniAdmin inurl:phpminiadmin ext:php
inurl:backup filetype:sql
inurl:"/wp-content/plugins/imagemagick-engine/"
intitle:"index of" intext:"Apache/1.4"
DHDB - GOOGLE DORK
intitle:index.of intext:log inurl:nasa
# Google Dork: intitle:"index of" "admin" "cgi-bin"
intext:"index of" "backuop/*.sql"
intitle:index of "wc.db"
intitle: index of /secrets/
inurl: wp-content/plugin/404-redirection-manager
intitle:BioTime AND intext:ZKTeco Security LLC
inurl: wp-content/plugin/8-degree-notification-bar
intext:"index of" ".git"
intext:"index of" "phpinfo"
intext:"index of" "xmlrpc.php"
intext:"index of" "phpMyAdmin"
intitle:"Oracle WebLogic Server"
site:investor.*.* AND inurl:home/default.aspx
inurl: administrator/components/com_admin/sql/updates/mysql/
inurl: administrator/components/com_admin/sql/updates/sqlazure
inurl: administrator/components
inurl index.php id= site.bd
intitle:"index of /database/migrations"
intitle:"Index of /webcam/"
intext:"index of" ".sql"
intitle:"index of" inurl:superadmin
intitle:"index of" inurl:SUID
intitle:"IIS Windows Server"
intitle:"WAMPSERVER Homepage"
intitle:"index of" intext:"Apache/2.2.3"
inurl: json beautifier online
inurl:/sym404/root
intitle: "index of" intext: human resources
intitle:"index of"|"access_token.json"
filetype:reg [HKEY_USERSDEFAULT]
intitle:"index of" intext:"Apache/2.2.3"
inurl: /wp-includes/uploads
intitle:"index of" "release.sh"
Sensitive Dork Exposing Uploads and Transcation details
intitle:"index of" "setup.sh"
intitle:"index of" "after.sh"
intitle:"index of" "*db.sh"
intitle:"index of" "configure.sh"
intitle:"index of" "deploy.sh"
index of:"backtrack" "hack" ext:php
intitle:"index of" "cookies" "php"
intitle:" TROJANS" Analysis Report
intitle:"bugs" Analysis Report
intext:"index of" "httpclient" "login"
intext:"sign up" "**" filetype:php
intext:"index of" "repository"
intext:"index of" "transaction"
intext:"index of" ".html"
intext:"index of" "phonepe" "wp-content"
intitle:"index of smtp"
intext: "admin" "subscribe" filetype:php
intext:"index of" "ipaddress"
intitle:"index of /" intext:".env"
intitle:"index of" "cron.sh"
inurl:/admin ext:config
Re: intext:"index of /" "server at"
inurl:s3.amazonaws.com intitle:"AWS S3 Explorer"
intitle:"index of" "db.py"
intitle: index of "awstats"
intitle:"index of "cloud-config.yml"
intitle:"Index of /" inurl:(resume|cv)
intitle:"index of" "private_key.pem"
intitle:"index of" include/
intitle:"index of" /gscloud
intitle:"index of" ("passenger.*.log" | "passenger.log" | | "production.log" )
index of /wp-admin.zip
intitle:"index of" aws/
intitle:"index of" "catalina.out"
intitle:"index of" "keystore.jks"
site:*.com "index of" error_logs
site:.com intitle:"index of" /ipa
site:.com intitle:"index of" /payments.txt
intitle:index of "error_log"
site:.com intitle:"index of" /paypal
site:cloudfront.net inurl:d
site:amazonaws.com inurl:elb.amazonaws.com
intitle:"index of "docker-compose.yml"
intitle:"index of" "java.log" | "java.logs"
intitle:index of ./jira-software
intext:"token" filetype:log "authenticate"
intitle:"index of" "printenv.pl
intitle:"login" intext:"authorized users only"
inurl: document/d intext: ssn
inurl:gitlab "AWS_SECRET_KEY"
inurl:/_vti_bin/ ext:asmx
inurl:/_layouts "[To Parent Directory]"
intitle:"ManageEngine Desktop Central 10" AND (inurl:configurations OR inurl:authorization)
site:gov.* intitle:"index of" *.doc
site:gov intitle:"index of" *.data
intitle:"index of" .ovpn
site:gov.* intitle:"index of" *.pptx
site:org.* intitle:"index of" * resources
site:gov.* intitle:"index of" *.xls
intext:"SQL" && "DB" inurl:"/runtime/log/"
intitle:" index of "/order/status"
intitle:"index of" "wp-upload"
intitle:"index of" filetype:sql
intitle:"index of" " *config.php "
intitle:"index of" " admin.php "
intitle:index of /backup private
intitle:"index of" " index.php?id= "
intitle:"index of" " wp-includes "
inurl:.com index of apks
intitle:index of "aws/credentials"
inurl:wp-content/plugins/reflex-gallery/
site:com.* intitle:"index of" *.admin
site:com.* intitle:"index of" *.admin.password
index of "fileadmin/php"
intitle:"index of" "admin-shell"
site:gov.* intitle:"index of" *.php
site:gov.* intitle:"index of" *.shell
site:com.* intitle:"index of" *shell.php
site:gov.* intitle:"index of" *.db
site:com.* intitle:"index of" *.db
site:com.* intitle:"index of" *.sql
site:.edu intext:"index of" "shell"
"index of" :.py
"index of" :.env
"index of" filetype:env
"index of" filetype:sql
"index of" filetype:db
inurl:*org intitle:"index of" "docker-compose"
intext:"/webdynpro/resources/sap.com/"
intitle:"index of" ".env" OR "pass"
ext:java intext:"import org.apache.logging.log4j.Logger;"
intitle:"index of" google-api-php-client
intitle:"index of" twitter-api-php
intitle:"index of" sns-login
intitle:"index of" linkedin-api
intitle:"index of" facebook-api
intitle:"index of" instagram-api
intitle:"index of" zoom-api
=?UTF-8?Q?intitle:"Index_of=E2=80=9D_user=5Fcarts_OR_user_=5Fcart.?=
intitle:"Index of" etc/shadow
intitle:"Index of" people.1st
service._vti_pvt.index
=?UTF-8?Q?=E2=80=9CIndex_of_/backup=E2=80=9D?=
# Description: site:gov.in filetype:xlsx "password"
intitle:"Apache Flink Web Dashboard"
intitle:"Index of cd"
intitle:"index of" "files.pl"
intitle:"index of" "man.sh"
allintitle:index of "/icewarp"
allintitle:index of "/microweber"
site:gov.* intitle:"index of" *Dokuments"
site:gov.* intitle:"index of" *.css
site:gov.* intitle:"index of" *.csv
Fwd: intitle:"Index of /" intext:"resource/"
Google to wordpress
Fwd: intitle:"atvise - next generation"
site:papaly.com + keyword
site:pastebin.com intitle:"cpanel"
intitle:index of settings.py
site:postman.com + keyword
inurl:admin filetype:xlsx site:gov.*
db_password filetype:env
inurl: /wp-content/uploads/ inurl:"robots.txt" "Disallow:" filetype:txt
inurl:admin filetype:xls
site:gov.* intitle:"index of" *.apk
inurl:admin filetype:txt
inurl:admin filetype:xls site:gov.in
intitle:"index of" "/products"
intitle:"index of" "/mysql"
site:*.ng intitle:index of
site:*.edu.in intitle:index of
inurl:*gov intitle:"index of" "docker-compose"
inurl:pastebin "SHODAN_API_KEY"
inurl:*gov intitle:"index of/documents"
intitle"index of" "php"
intitle:"index of" site:gov.in
site:*.github.io intext:cheatsheet+offensive+pentesting
intitle:"index of" "admin.js"
inurl:gov.in & inurl:admin
intitle:"index of" "wp-inc"
allintext"account number"
site:.edu intext:"index of" "payroll"
intitle:"index of" "*.yaml"
site:*.se intitle:"index of"
site:*.id intitle:"index of" "screenshot*.jpg"
intitle:"index of" "*.vcf"
intitle:"index of" "apache.log" | "apache.logs"
site:drive.google.com "*.pdf"
intitle:"index of "/key/" "key.txt"
inurl:linkedin.com "view my resume" facebook
intitle.index of .log
intitle:"index of" "sysinfo"
intitle.index of .exe
intitle.index of API*.txt
intitle:"index of" site:gov.np
intitle:"index of" "*.mp4"
intitle:"index of" "admin*.txt"
site:.nic.in inurl:.php?id=
inurl:.org intitle index.of "inflation"
site:*/admin-portal/
intitle:"index of" site:gov.ru
intitle:"index of" site:gov.gr
site:.in | .com | .net intitle:"index of" ftp
inurl:forgotpassword.php
intitle:"index of" site:gov.*
intitle:"index of" "/public_html"
inurl:node_modules/ua-parser-js
intitle:"index of" "/public/js"
inurl:pastebin "SHODAN_API_KEY"
inurl:*gov intitle:"index of/documents"
inurl:.php?=*php site:.nic.in
intitle:"index of" "/students"
site:com "rfp" filetype:pdf
site:.edu intext:"index of" "logs"
intext:"Index of /chatlogs"
inurl:pastebin "CVV"
site: com intext " organisation data" filetype:xls
intitle:"index of" "default.asp "
intitle:"index of" " fileadmin "
intitle:"index of" " YaBB.pl "
intitle:"index of" " htsearch "
intitle:"index of" " glimpse "
intitle:"index of" " webdriver "
intitle:"index of" " index.php.bak "
intitle:"index of" " sendmail.inc "
intitle:"index of" " login.jsp "
intitle:"index of" " mod_auth_mysql "
intitle:"index of" "test.bat "
intitle:"index of" "msadcs.dll "
intitle:"index of" "browser.inc "
intitle:"index of" "hello.bat "
intitle:"index of" "dvwssr.dll "
intitle:"index of" Servlet"
intitle:"index of" upload.asp "
inurl:pastebin "API_KEY"
inurl:pastebin "Windows 10 Product Keys*"
intitle:"index of" "data*"
intitle:"index of" "document*.pdf"
{intitle: indexof/.git }
site:gov.hk intitle:index of /
inurl:pastebin "AWS_ACCESS_KEY"
site:*/forgotpassword.php
site:.edu intitle:"index of"
site:pastebin.com "*@gmail.com password"
site:.edu inurl:search
intitle:"Index of" "DCIM/camera"
intitle:"Index of" "Screenshot"
intitle:"Index of" "system32"
intitle:"Index of" "Program files"
intitle:"Index of" *.py
intitle:"index of" "certificates"
intitle:"index of" "/.cpanel"
"index of" :excel documents
intitle:"index of" :mobile number
intitle:"index of" "node.js"
intext:"Index of" intext:"config.zip"
inurl: conf/fastcgi.conf
inurl:conf/nginx.conf
site:com intitle:"index of" .env
intitle:"Index of" *.xlsx
index of: "participants" "uploads"
filetype:txt site:gitlab.* "secret" OR "authtoken"
site:gitlab.* intext:password intext:@gmail.com | @yahoo.com | @hotmail.com
inurl: */.env
intitle:"index of" "/.git/config"
intitle:"index of" "*/ftp.txt"
intext:"index of" "user-config"
intitle:"database" "backup" filetype:sql
intext:"sitemap" filetype:txt
intext:pass filetype:txt
inurl:/package.json
intitle"index of" "username" "password" filetype: xlsx
intitle:"Index of /logs/" "nginx"
intext:"index of" "home_page"
inurl:/mutillidae/ "Toggle Hints"
intext:"index of" inurl:/etc/
inurl:wp-content/uploads/wooccm_uploads
intitle:"index of" "particle.js"
index of: "invoice" "upload"
intitle:"index of" Hindi movies
intext:"index of" "wp-uploads"
intext:"index of" "signin"
index of: "marksheet" "upload"
inurl:gov.uk
intext:"Index of" intext:"users.zip"
intext:"Index of" "services.php | pass.php | passwd.php | credentials.txt"
intitle:"index of" "dhcp"
index of:"blog" "upload"
inurl:cache/uploads
intitle:"index of" "Apache/2.4.41 (Ubuntu) Server"
intext:"password" | "passwd" | "pwd" site:anonfiles.com
site:*.example.com inurl:(elmah.axd | errorlog.axd) ext:axd
inurl:errorlog.axd ext:axd
showing putty logs
intitle:"index of" "script.js"
intitle:"index of" "admin-config"
intitle:"index of" "admin.login.php"
intitle:"index of" "admin.login.php"
intitle:"index of" " wp-mail-smtp"
intitle:"index of" "/resources"
intext:"index of" "ftp"
intitle:"index of" "untitled"
intitle:"index of" "untitled" "wp-content" intext:scanned
index of :"uploads" "parent" "salary" intext:salary
index of :wp-config.zip
intitle:"index of" ".ssh/authorized_keys"
Intitle:database ext:sql
index of: "parent directory" "uploads"
index of: "confidential" "uploads"
index of: "cache" "uploads"
index of: "QRcodes" "uploads"
index of: "contracts" "uploads"
index of : "phonebook "
index of : "truecaller" "uploads"
index of: "license" "upload"
index of: "certificate" "upload"
index of: "certificate" "wp-content"
index of: "application" "upload"
index of: "application form" "upload"
index of: "documents" "wp-content"
intitle:"index of" "_vti_inf.html"
intitle:"index of" "service.pwd"
intitle:"index of" "shtml.dll "
inurl:admin ext:sql
index of:"password" "wp-content"
index of: "putty" "uploads"
intitle:"index of" "master01"
intitle:"index of" " unidecode"
intitle:"index of" " cldr-data"
intitle:"index of" " gettext"
intitle:"index of" " src "
intitle:"index of" " src.hint"
intitle:"index of" "tar.xz"
intitle:"index of" "pkgs"
intitle:"index of" "ftp.riken
intitle:"index of" "pub"
intitle:"index of" "cygwin"
intitle:"index of" "kde-l10n-de"
intitle:"index of" "txdot"
intitle:"index of" "mirror.koddos.net"
intitle:"index of" "Squid-cache"
intitle:"index of" "-login.php"
intitle:"index of" "metin"
intitle:"index of" "html-en"
intitle:"index of" "html-intro"
intitle:"index of" "echo-linux"
intitle:"index of" "filelist.xml"
intitle:"index of" "wp-content"
intitle:"index of" "css"
intitle:"index of" "CD.pdf "
intitle:"index of" "DOCS-TECH "
intitle:"index of" " Server-Side "
intitle:"index of" " py-text"
Google Dork
Google Dork
Google Dork
intitle:"index of" "htdocs"
intitle:"index of" ".ppt"
site:github.com intext:"unattend xmlns" AND "password" ext:xml
intitle:"index of" "workspace.xml"
intitle:"index of" "-qpf"
intitle:"index of" "-ipk"
intitle:"index of" "Packages.gz"
intitle:"index of" "mips32el-nf"
intitle:"index of" ".phpunit.xml"
intitle:"index of" " .AndroidManifest.xml"
intitle:"Index of /" intext:"pass.txt"
inurl:WS_FTP.log
intext:"Index of" "email.txt"
intitle:"index of" "pptx"
intitle:"index of" "ppt.html"
intitle:"index of" "slides-ppt"
intitle:"index of" "-XML.pdf "
intitle:"index of" "XML "
intitle:"index of" "XML.Xerces "
intitle:"index of" "infn.it"
intitle:"index of" "lngs.infn.it "
intitle:"index of" "extra"
intitle:"index of" "extranet"
intitle:"index of" "fsi"
intitle:"index of" "oxid-esales"
site:pastebin.com intext:license key | expiration
site:pastebin.com intext:username | password | secret_key | token
intitle:index.of /email /robots.txt
intitle:index.of /cftp /robots.txt
allinurl:index.php?page= site:.gov.in
"inurl:php?id=" site:.gov.bd
Index of /vendor/spatie/robots-txt
intitle:"index of" ".private.xml"
site:pastebin.com intext:"administrator:500:"
"inurl:php?id=" site:.com
Index of /apidoc/api-web/target/classes/
intitle:"password reset"
intitle:index.of /CMS /robots.txt
intitle:"index of" "server.log"
intitle:"index of" "/backup/sql"
intitle:index of cv site:.com
intext:swagger filetype:log
intitle:"index of" "server.properties"
inurl:"robots" | "robot" intext:"admin" AND "Disallow" ext:txt
intitle:"index of" "mongod*"
intitle:index.of wp.login
inurl:/wp-content/plugins/simple-forum/admin/
intitle:index.of /Snowflake /robots.txt
intitle:"index of" ".env.example"
inurl:"app.yaml" intext:"runtime: " ext:yaml
inurl: https://app.zerocopter.com/rd/
intitle:index.of conf.mysql
intext:"password" intitle:"index of"
Fwd: intitle:"Authorize application" "Learn more about OAuth"
inurl:/wp-content/plugins/elementor/
inurl:/wp-content/plugins/wp-filebase/
intitle:"index of" "console"
intitle:"index of" "logs"
index of / inurl:/pki/
intext:"index of/" "top secret" gov
inurl:/servicedesk/customer/user/signup
inurl:wp-content/plugins/easy-wp-smtp
inurl:"/app/kibana#"
intext:"adobe coldfusion 8"
New Dork
intitle:"Index of" inurl:data/plugins/
Google Dork: intitle:"Index of" "Apache/2.4.50"
site:*/node_modules/ content:"ssh"
site:*/node_modules/ content:"PEM"
intitle:"index of" "schema.mysql"
intitle:"Pi-hole - raspberrypi"
inurl:"/responsible disclosure"
"Warehouse Management System" Ext:pdf site:.gov
intitle: "index of" "admin" "/backup"
intitle: "Library System by YahooBaba"
inurl:/wp-content/plugins/thecartpress/
inurl:/wp-content/plugins/mstore-api/
inurl:/plugins/pie-register/
filetype:log intext:("apache2" | "htdocs")
intext:"index of/" "client-1.0-SNAPSHOT"
intitle:"phpinfo()" inurl:"phpinfo.php"
intitle:"index of" "passwords" gov
intitle:"index of" "credentials"
site:pastebin.com intitle:"leak" | "breach" intext:"password" | "pw" | "pwd"
site:pastebin.com intext:root: & :0: & ::: | intitle:passwd | shadow
intitle:"Index of" "Apache/2.4.49"
intitle: "access log" filetype: txt
"boarding pass" site:http://tripadvisor.com
intitle:index de sshd_config
intitle:"index of" "mysql.yaml"
site:*/oauth/token
intitle:"index of" "sftp.json"
inurl:simplesaml/saml2/idp
".:/opt/remi/php56/root/usr/share/pear" | ":/opt/remi/php56/root/usr/share/php"
intitle:"index of" "config.json"
intitle:"index of" "docker-compose.yaml"
inurl:execute-api site:amazonaws.com
intitle:index of django.config
intitle:"index of" inurl:gov Juicy Info |GHDB
intitle: "index of Health Records"
intitle:"index of" "/api-debug.log"
site:pastebin.com intext:"-----BEGIN CERTIFICATE-----"
site:pastebin.com intext:"-----BEGIN RSA PRIVATE KEY-----"
site:pastebin.com intext:":aad3b435b51404eeaad3b435b51404ee:"
intitle:"index of" "schema.graphql"
site:.execute-api.us-east-1.amazonaws.com
inurl:employee filetype:xls
ext:xls intext:/etc/passwd | inurl:password
"index of" intext:wpbdp-csv-exports
inurl:mil intext:"UNCLASSIFIED/FOUO" ext:pdf
filetype:log "AUTHTOKEN"
intitle: "Index of ipcam"
intitle: "index of data clinic"
intitle:"index of" "mongod.conf"
intitle:"index of " inurl:".bash_profile "
intitle:"Operations Automation Default Page"
intext:"Powered by YzmCMS"
intitle:"index of" "sourcecode"
# Exploit Title: [SF Dork]
inurl:/wp-content/themes/striking_r
inurl:/wp-content/themes/avada
inurl:/wp-content/themes/centum
inurl:/wp-content/themes/ultimatum
inurl:/wp-content/themes/IncredibleWP
inurl:/wp-content/plugins/wp-e-commerce
intitle: "index" inurl: log
allintitle:Index of /wp-includes/
intext:private_key filetype:log
intext:api_key filetype:log
inurl: /admin/webeditor/admin_login.asp
inurl:sap/public/bc
intext:"docs.google.com/forms/d/"
intitle:" index of " "/BigIp"
intitle:"index of" "robots.txt"
intext:"Number of Requests for items accessed on this Server"
allintext:"[Sec. Info]" file.php
allintext:"Call to undefined function"
intitle:GoogleService-Info filetype:plist
intitle:"Index of" "build-an-atom"
inurl:"robots" | "robot" intext:"Disallow:" | "Allow:" ext:txt
inurl:autodiscover/autodiscover.xml
intitle:"index of" "robots.txt"
intitle:"index of" "development.js"
intext:Authorization: Bearer filetype:log
intitle.index of .env
intitle:index.of root user
intext:"Powered by SmarterTrack"
inurl:/wp-content/themes/beach_apollo
phpMyAdmin -www filetype:conf site:*
Google Dork: intitle:index.of ipconfig
intitle:"index of" "tls-cert.pem" | "tls-csr.pem" | "tls-key.pem"
intitle:"index of" "development.py"
intitle:"index of" "production.py"
intitle:"index of" "local_settings.py"
inurl:/admin/radeditorprovider/dialoghandler.aspx "Loading the dialog..."
inurl:/_vti_bin/Authentication.asmx
ext:txt intext:Windows PowerShell transcript start
intitle:"index of" "database.py"
intitle: "index of /files clients"
intitle:"index of" "irc.log" | "irc.logs"
site:*/phpmyadmin/import.php
site:*/phpmyadmin/server_import.php
intext:"Welcome to Huawei web page for network configuration."
intitle: index of /bin/php.ini
intitle:"LiveZilla Server Page"
intitle:"index of" "/webpack-dev-server/ssl/"
intitle:"index of" "/wp-content/uploads/"
intext:"API KEY" site:pastebin.com
intitle:"Index of" service.pwd
inurl:gov filetype:xls intext:password
intext:"SECRET_KEY=" site:pastebin.com
intext:"private_key=" site:pastebin.com
allintext:adhaar filetype:xlsx
filetype:xlsx intext:"gmail.com" OR "hotmail.com" site:gov
intitle:untitled filetype:xls intext:password
inurl:wp-content/plugins/modern-events-calendar-lite
inurl:/inicis/ ext:log
"Not for Public Release" + "Confidential" ext:pdf | ext:doc | ext:xlsx
intitle:"index of" "ssh_host_rsa_key" + "ssh_host_rsa_key.pub"
intitle:"index of" "db.sqlite3"
intitle:"index of" "/sql"
index of storage/oauth-private.key
inurl:/wp-content/uploads/ "phpMyAdmin SQL Dump"
inurl:/wp-content/uploads/wpdm-cache
site:*/phpmyadmin/server_databases.php
site:*/phpmyadmin/server_privileges.php
inurl:phpmyadmin/sql.php?server=1
inurl:ALFA_DATA intitle:"index of"
site:*/phpmyadmin/server_sql.php
site:.gov.co intitle:Index of
intitle:"index of" intext:"senha"
intitle:"index of" "google-services.json"
intitle:"Index of" ws_ftp.ini
intext:"Your client connection" + "Network name" + "Hardware address"
"Parent Directory" AND "Index of" AND "config.php_old"
intext:cv OR intext:curriculum vitae AND intext:"SSN" ext:doc
inurl:ftp -inurl:(http|https) intext:"@gmail.com" intext:subject fwd|confidential|important|CARD|cvv
intitle:"index of" "secret.yaml"
inurl:"dcwp_twitter.php"
intitle:"index of" "application.properties"
ext:(doc | pdf | xls | txt |) (intext:confidential salary) inurl:confidential
filetype:log inurl:paypal
intitle:final.attendee.list | inurl:final.attendee.list
ext:xlsx inurl:database
allintext:@gmail.com filetype:log
inurl:https://trello.com AND intext:@gmail.com AND intext:password
intitle:"index of" intext:"apikey.txt
inurl:"/php/info.php" "PHP Version"
site:ftp.*.*.* "ComputerName=" + "[Unattended] UnattendMode"
ext:yml | ext:txt | ext:env "Database Connection Information Database server ="
"The SQL command completed successfully." ext:txt | ext:log
"putty.log" ext:log | ext:cfg | ext:txt | ext:sql | ext:env
ext:php intitle:phpinfo "published by the PHP Group"
intitle:"index of" intext:"web.xml"
ext:txt | ext:log | ext:cfg "Building configuration..."
ext:sql | ext:txt intext:"-- phpMyAdmin SQL Dump --" + intext:"admin"
"secret_key_base:" ext:exs | ext:txt | ext:env | ext:cfg
site:gov ext:sql | ext:dbf | ext:mdb
intitle:"index of" "Clientaccesspolicy.xml"
intitle:"index of" intext:credentials
Index of /_vti_pvt +"*.pwd"
intitle:"index of" "service-Account-Credentials.json" | "creds.json"
intitle:"index of" "/.idea"
intitle:"index of" "/xampp/htdocs" | "C:/xampp/htdocs/"
"* Authentication Unique Keys and Salts" ext:txt | ext:log
"-- Server version" "-- MySQL Administrator dump 1.4" ext:sql
site:*gov.* intitle:index.of db
allintext:"Index Of" "cookies.txt"
ext:txt | ext:log | ext:cfg | ext:yml "administrator:500:"
"index of" "/home/000~ROOT~000/etc"
intitle:"PowerMTA" inurl:logs
allintext:"index of" "oauth-private.key"
"UV9 Error (1.0)"
intitle:"Environment Variables" inurl:/cgi-bin/
intitle:"index of" "mysql.log" | "mysql.logs"
"putty.log" ext:log | ext:cfg | ext:txt
intitle:"index of" "config.db"
intitle:"index of" "phpmyadmin.sql"
Database:phpmyadmin intext:mysql ext:sql inurl:phpmyadmin
'AUTH_SALT' | 'SECURE_AUTH_SALT' | 'LOGGED_IN_SALT' | 'NONCE_SALT' ext:txt | ext:cfg | ext:env | ext:ini
intitle:"index of" "composer.lock"
"index of" "callback.php"
site:ftp://ftp.*.* ext:sql
intext:admin ext:sql inurl:admin
ext:log intext:NetworkManager "systemd"
"index of" "user.MYD"
allintext:"API_SECRET*" ext:env | ext:yml
"Reflector Dashboard" inurl:/db/index.php/
intitle:"index of" jboss-service.xml
intext:ISUR_MACHINE IIS -log
allintext:username,password filetype:log
intitle:"index of" exception.log
intitle:"report" ("OpenVAS" | "Nikto") ext:pdf OR ext:html
intitle:"report" ("Fortify" | "Web Inspect") filetype:pdf
intitle:"Index of /" "joomla/database"
intitle:"report" ("qualys" | "acunetix" | "nessus" | "netsparker" | "nmap") filetype:html
intitle:"index of" ./bash_history
"-----BEGIN RSA PRIVATE KEY-----" inurl:id_rsa
"Index of" "accounts.sql"
intitle:"index of" "bundle.pem"
intitle:"index of" /etc/openvpn/
intitle:"index of" "*named.root.key"
Index of /__MACOSX/System
intitle:"index of" "id_rsa.pub"
intext:"Not to be distributed" ext:doc OR ext:pdf OR ext:xls OR ext:xlsx
index of /backend/prod/config
"Index of" "/access"
intext:"index of /" "*.yaml"
"index of" "siri"
intitle:"index of" secrets.yml
intitle:"index of /" "*key.pem"
intext:"index of /" "config.json"
index of .svn/text-base/index.php.svn-base
intitle:"index of" admin.tar
"Index of" "customer.php"
intitle:index.of.?.db
"index of sqlite"
"root.log" ext:log
intitle:"index of" "dev/config"
index of "logs.zip"
index of "dbbackup"
intitle:"index of /" "nginx.conf"
intitle:"index of" "wp-admin.zip"
DORK : intext:"index of" "var/log/"
"microsoft internet information services" ext:log
index of "backup.zip"
inurl:admin intitle:index of ext:sql | xls | xml | json | csv
"phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
intitle:"index of" "var/log/"
intitle:index of config.asp
intitle:"index of" "security.php"
index.of:"pcap" -site:stackoverflow.com -site:github.com
intitle:"index of" ".config"
inurl:.drone.yml intext:git config user.email
intitle:"index of" "adminsubscribeack.txt"
intitle:"index of" "log.bak"
inurl:"ReportServer/Pages/ReportViewer.aspx"
intitle:"index of" "database/config"
intitle:"index of" "auth_config.php"
intitle:"index of" "aws-config.php"
intitle:"index of" "auth.config"
"index of" "sshd_config"
"index of" /ftp/logs
"index of" /private/logs
allinurl:index.php?db=information_schema
filetype:sql intext: "sql dump"
"index of" "user.sqlite"
ext:sql intext:"-- phpMyAdmin SQL Dump
intitle:"index of" "properties.ini"
intitle:"index of" "db.log"
intext:"W E L C O M E to R O O T" ext:cfg OR ext:log OR ext:txt
intitle:"index of" "userdata.json"
intitle:"index of " "users.json"
intitle:"index of" "wpadmin-secure.htaccess"
intitle:"index of" "privkey.pem"
intitle:"index of" "dhparams.pem"
intitle:"index of" "token.txt"
intitle:"index of" "refresh_token.txt" OR "access_token.txt" OR "jsapi_ticket.txt"
intitle:"index of" "*root.pem"
"index of" "wp-config.zip"
intitle:"index of" "cassandra-yaml"
intitle:"index of" "configure.in"
intitle:"index of" "user data.txt"
intitle:"index of" "jsapi_ticket.json"
intitle:"index of" "mvn-settings.xml"
intitle:"index of" "admin.jsp"
intitle:"index of" "postgresql.conf"
intitle:"Index of" "backup-audio-queue.log" OR "backup-audio.log" OR "backup-mysql.log"
intitle:"index of" "token_info.json" OR "get_access_token.json"
intitle:"index of" "fullchain.pem" OR "chain.pem"
intitle:"index of" "users.txt"
intitle:"Index of" "ca-key.pem" OR "ca-req.pem"
intitle:"index of" "local.json"
intitle:"index of" "oauth-credentials.json"
intitle:"index of" "backup.js"
intitle:"index of" "debian-security.log"
intitle:"index of" "auth.asc"
intitle:"index of" "security.json"
intitle:"index of" "google-api-private-key.json"
intitle:"index of" "secrets.py"
intitle:"index of" "cfg.go"
intitle:"index of" "config.rb"
intitle:"index of" "login.docx"
intitle:"index of" "config.pl"
intitle:"index of" "manage.py"
intitle:"index of" "config.js"
intitle:"Index of" test.logs
intitle:"index of" "queue.log"
intitle:"index of" "web.log" OR "web.logs"
intitle:"index of" "Logins.txt"
intitle:"index of" "keys.asc"
intitle:"index of" "login.txt"
intitle:"index of" "auth.log"
intitle:"index of" users.bak
inurl:administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=
intitle:"index of" "secret.js"
intext:"laravel" ext:env intext:"db_password" -git
intitle:"index of" "accounts.json"
intitle:"index of" "admin.bak"
intitle:"index of" "settings.yaml"
intitle:"index of" "api.yaml"
intitle:"index of" "client_id.json"
intitle:"index of" "/config.bak"
intitle:"index of" "/yum.log"
intitle:"index of" "/users.xls"
intitle:"index of" "users.ini"
intitle:"index of" "/accounts.txt"
intitle:"index of" dataSources.local.xml
intitle:"index of" apis.json
intitle:"index of" admin.txt