首页网文心情网络杂谈利用搜索引擎语法 嗅探渗透测试寻找网络敏感信息

利用搜索引擎语法 嗅探渗透测试寻找网络敏感信息

分类网络杂谈时间2026-08-26 11:06:37发布heikeyh浏览6
导读:通过搜索引擎,使用关键词,可以快速的搜索到自己想要的数据,同时通过这种方法,可以快速定位存在暴露敏感信息的服务器命令主要是是看自己的需求进行编写拼凑,下面是一些搜索命令,仅供学习1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950...

通过搜索引擎,使用关键词,可以快速的搜索到自己想要的数据,

同时通过这种方法,可以快速定位存在暴露敏感信息的服务器

例如遍历数据库备份目录

c0ce560c-fe05-4569-bebd-7abcbbb6233c.png

518f162b-f176-4e80-933e-ba8e83c60d94.png


命令主要是是看自己的需求进行编写拼凑,下面是一些搜索命令,仅供学习

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
site:*/phpmyadmin/server_databases.php
 
inurl:/wp-content/uploads/ "phpMyAdmin SQL Dump"
 
inurl:/wp-content/uploads/wpdm-cache
 
inurl:phpmyadmin/sql.php?server=1
 
inurl:ALFA_DATA intitle:"index of"
 
site:*/phpmyadmin/server_privileges.php
 
site:*/phpmyadmin/server_sql.php
 
site:.gov.co intitle:Index of
 
intitle:"index of" intext:"senha"
 
intitle:"Index of" ws_ftp.ini
 
intitle:"index of" "google-services.json"
 
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
 
inurl:https://trello.com AND intext:@gmail.com AND intext:password
 
allintext:@gmail.com filetype:log
 
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
 
intitle:"index of" intext:"web.xml"
 
ext:txt | ext:log | ext:cfg "Building configuration..."
 
ext:php intitle:phpinfo "published by the PHP Group"
 
"putty.log" ext:log | ext:cfg | ext:txt | ext:sql | ext:env
 
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"
 
Index of /_vti_pvt +"*.pwd"
 
intitle:"index of" intext:credentials
 
intitle:"index of" "service-Account-Credentials.json" | "creds.json"
 
intitle:"index of" "/.idea"
 
site:*gov.* intitle:index.of db
 
"-- Server version" "-- MySQL Administrator dump 1.4" ext:sql
 
intitle:"index of" "/xampp/htdocs" | "C:/xampp/htdocs/"
 
"* Authentication Unique Keys and Salts" ext:txt | ext:log
 
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" ("Fortify" | "Web Inspect") filetype:pdf
 
intitle:"report" ("OpenVAS" | "Nikto") ext:pdf OR ext:html
 
intitle:"report" ("qualys" | "acunetix" | "nessus" | "netsparker" | "nmap") filetype:html
 
intitle:"Index of /" "joomla/database"
 
intitle:"index of" ./bash_history
 
"-----BEGIN RSA PRIVATE KEY-----" inurl:id_rsa
 
"Index of" "accounts.sql"
 
intitle:"index of" "bundle.pem"
 
intitle:"index of" "*named.root.key"
 
intitle:"index of" /etc/openvpn/
 
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"
 
"index of" "siri"
 
intitle:"index of /" "*key.pem"
 
intext:"index of /" "*.yaml"
 
intitle:"index of" secrets.yml
 
intitle:"index of" admin.tar
 
index of .svn/text-base/index.php.svn-base
 
intext:"index of /" "config.json"
 
intitle:index.of.?.db
 
"Index of" "customer.php"
 
"index of sqlite"
 
index of "logs.zip"
 
index of "dbbackup"
 
intitle:"index of /" "nginx.conf"
 
"root.log" ext:log
 
intitle:"index of" "dev/config"
 
"phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
 
index of "backup.zip"
 
DORK : intext:"index of" "var/log/"
 
"microsoft internet information services" ext:log
 
intitle:"index of" "wp-admin.zip"
 
inurl:admin intitle:index of ext:sql | xls | xml | json | csv
 
intitle:index of config.asp
 
intitle:"index of" "var/log/"
 
"index of" /ftp/logs
 
intitle:"index of" "auth.config"
 
index.of:"pcap" -site:stackoverflow.com -site:github.com
 
intitle:"index of" ".config"
 
intitle:"index of" "adminsubscribeack.txt"
 
intitle:"index of" "auth_config.php"
 
"index of" /private/logs
 
allinurl:index.php?db=information_schema
 
"index of" "sshd_config"
 
intitle:"index of" "database/config"
 
filetype:sql intext: "sql dump"
 
"index of" "user.sqlite"
 
intitle:"index of" "log.bak"
 
intitle:"index of" "adminsubscribeack.txt"
 
intitle:"index of" "var/log/"
 
"index of" /private/logs
 
filetype:sql intext: "sql dump"
 
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"
 
intitle:"index of" "user data.txt"
 
"index of" "wp-config.zip"
 
intitle:"index of" "configure.in"
 
intitle:"index of" "mvn-settings.xml"
 
intitle:"index of" "cassandra-yaml"
 
intitle:"index of" "jsapi_ticket.json"
 
intitle:"index of" "users.txt"
 
intitle:"index of" "postgresql.conf"
 
intitle:"index of" "fullchain.pem" OR "chain.pem"
 
intitle:"index of" "admin.jsp"
 
intitle:"Index of" "ca-key.pem" OR "ca-req.pem"
 
intitle:"index of" "token_info.json" OR "get_access_token.json"
 
intitle:"Index of" "backup-audio-queue.log" OR "backup-audio.log" OR "backup-mysql.log"
 
intitle:"index of" "debian-security.log"
 
intitle:"index of" "secrets.py"
 
intitle:"index of" "manage.py"
 
intitle:"Index of" test.logs
 
intitle:"index of" "backup.js"
 
intitle:"index of" "local.json"
 
intitle:"index of" "config.js"
 
intitle:"index of" "login.docx"
 
intitle:"index of" "security.json"
 
intitle:"index of" "auth.asc"
 
intitle:"index of" "cfg.go"
 
intitle:"index of" "config.pl"
 
intitle:"index of" "google-api-private-key.json"
 
intitle:"index of" "web.log" OR "web.logs"
 
intitle:"index of" "config.rb"
 
intitle:"index of" "queue.log"
 
intitle:"index of" "oauth-credentials.json"
 
intitle:"index of" "secret.js"
 
intitle:"index of" users.bak
 
inurl:administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=
 
intitle:"index of" "auth.log"
 
intitle:"index of" "keys.asc"
 
intitle:"index of" "login.txt"
 
intitle:"index of" "Logins.txt"
 
intitle:"index of" "client_id.json"
 
intitle:"index of" "settings.yaml"
 
intext:"laravel" ext:env intext:"db_password" -git
 
intitle:"index of" "admin.bak"
 
intitle:"index of" "/yum.log"
 
intitle:"index of" "/config.bak"
 
intitle:"index of" "/users.xls"
 
intitle:"index of" "accounts.json"
 
intitle:"index of" "api.yaml"
 
intitle:"index of" "database.json"
 
intitle:"index of" "users.ini"
 
intitle:"index of" apis.json
 
intitle:"index of" admin.txt
 
intitle:"index of" "docker-cloud.yml"
 
intitle:"index of" "application.yml"
 
intitle:"index of" "parameters.yml.test" OR "parameters.yml.dist"
 
intitle:"index of" dataSources.local.xml
 
intitle:"index of" "/accounts.txt"
 
"settings.ini" intext:"fbconnectkey =" intext:"msverify ="
 
intitle:"index of" "client_secret.json" OR "client secret" OR "client_secret live.json"
 
intitle:"index of" "keys.ini"
 
intitle:"index of" license-key.txt
 
intitle:"index of" "dovecot.key" OR "dovecot.crt.cache" OR "dovecot.crt"
 
intitle:"index of" "token.json"
 
intitle:"index of" settings.xml
 
intitle:"index of" "credentials.ini"
 
intitle:"index of" /insecure_private_key
 
intitle:"index of" db.json
 
intitle:"index of" "credentials.json"
 
intitle:"index of" machine.config
 
intitle:"index of" apache.log
 
intitle:"index of" /.ssh/id_rsa OR id_rsa.pub
 
intitle:"index of" /known_hosts
 
intitle:"index of" "syslog"
 
intitle:"index of" keepass.kdbx OR database.kdbx
 
intitle:"index of" "/cron.log"
 
intitle:"Index of" db_mysql.inc
 
intitle:"Index of" db.inc
 
"DBPassword" ext:cfg OR ext:log OR ext:txt OR ext:sql -git
 
"SecretAccessKey" OR "AccessKeyId" ext:txt OR ext:cfg -git
 
"-----BEGIN CERTIFICATE-----" ext:pem -git
 
"-----BEGIN OpenVPN Static key V1-----" ext:key
 
intitle:"index of" errorlog.txt
 
intitle:"index of" default.rdp
 
intext:"Current Configuration:" ext:cfg -git
 
intitle:"index of" "vpn-config.*"
 
intitle:"index of" cvsweb.conf
 
filetype:reg reg HKEY_USERS -git
 
filetype:reg reg HKEY_CLASSES_ROOT -git
 
filetype:reg reg [HKEY_CURRENT_USERSoftware] -git
 
ext:cfg tac_plus.cfg
 
inurl:-cfg intext:"password cipher"
 
inurl:cfg intext:"srb.username.1=" "srb.password.1 = "
 
intitle:"index of" "mysql.properties"
 
intext:"dspace.cfg" "db.username = dspace"
 
"# Kickstart" filetype:cfg
 
intext:"index of /" "token.yml"
 
intitle:"index of" database.yml
 
intitle:"index of" "configuration.yml"
 
intitle:"index of" "backup.yml"
 
intitle:"index of" "settings.yml"
 
intitle:"index of" "secrets.yml"
 
intitle:"index of" "backup.bak"
 
intitle:"index of" "access_token"
 
intitle:"index of" accounts.xml
 
intitle:"index of" "settings.py"
 
intitle:"index of" "php.ini"
 
intext:"index of /" "auth.json"
 
intitle:"index of" /"privatekey.txt" OR "private key.txt"
 
intitle:index.of "cacert.pem"
 
intitle:"index of/" "db.sql"
 
intitle: index of "*db.tar.gz"
 
intitle:"index of" "smtp.log"
 
intitle:"index of" "env.bak"
 
intitle:index.of "awsconfig.json"
 
intext:"SECRET_KEY" ext|py inurl:mysite -site:stackoverflow.com -site:github.com
 
intitle:index.of "keys.txt"
 
intitle:"index.of" intext:"api.txt"
 
intitle:"index.of" intext:"access.txt"
 
accdb OR accde intitle:"index of" -pub -google -books
 
krb.conf OR krb.realms intitle:"index of" -public -archive -packages -pub
 
filetype:env intext:APP_NAME
 
-pub -pool intitle:"index of" db.key OR server.key OR ftp.key OR exchange.key OR host.key OR mail.key
 
intitle:"index of" ticket.conf
 
intitle:"index of" crontab.conf
 
intitle:"index of" lesshsQ/ OR .lesshst/ -pool -pub
 
"fetchmailrc" intitle:"index of" -linux
 
inurl:"_notes/dwsync.xml"
 
intitle:"index of" "wp-security-audit-log"
 
"MailChimp API error:" ext:log
 
inurl:"/fmi/webd" intitle:"FileMaker WebDirect"
 
[ipn] ext:log
 
inurl:"web.config" & intext:"Data Source" & "User ID" & "Password" & "connectionString" & ext:config -git
 
Navicat MySQL Data Transfer filetype:sql
 
ext:sql intext:@gmail.com intext:e10adc3949ba59abbe56e057f20f883e
 
filetype:"xls | xlsx | doc | docx | ppt | pptx | pdf" site:gov "FOUO" | "NOFORN" | "Confidential"
 
intext:"@outlook.com" ext:log
 
intext:"@gmail.com" ext:log
 
intitle:"index of" "mail.log"
 
intitle:"index of" "ssh.yml"
 
intitle:index.of "access.conf"
 
intitle:"index of" "databases.yml"
 
intitle:index.of "private-key.pem"
 
intitle:"index of" inurl:ftp intext:logs
 
db_password filetype:env -site:github.com -git
 
intitle:index.of "key.txt"
 
intitle:index.of "credential.txt"
 
"accounts.xlsx" ext:xlsx
 
intitle:index.of "userpass.txt"
 
site:mypublicinbox.com intitle:email
 
site:*.freshservice.com/support/solutions
 
inurl:"/.vscode/sftp.json"
 
intitle:"Index Of" intext:sftp-config.json
 
inurl:"/.vscode/ftp-sync.json"
 
intitle:"index of" "web.config.txt"
 
site:*/wp-settings.php
 
site:*/logs/error.log
 
site:*/*/conf/httpd.conf
 
inurl:credentials.txt -github -git -gitlab
 
site:ftp.*.* index of: manifest.xml
 
index.of "crossdomain.xml"
 
intitle:"index of" "debian.conf"
 
intitle:"index of" inurl:/*sql* filetype:log
 
inurl:/application/config/database.php*
 
intitle:"index of" "/mysql.log"
 
site:*/sitemap/sitemap.xml
 
"Scanned by Camscanner" filetype:pdf
 
inurl: /config.txt ext:txt intext:
 
site:*/phpMyAdmin/robots.txt
 
site:*/robots.txt intext:User-agent:
 
site:*/log/access_log
 
intitle:"index of" "debian.cnf"
 
ext:sql intext:"-- phpMyAdmin SQL Dump" -site:github.*
 
intitle:index.of.?.config.ini
 
site:docs.google.com inurl:forms | viewanalytics intext:see previous responses
 
ext:sql intext:contrasena
 
site:*/phpinfo.php intitle:"phpinfo()"
 
ext:sql intext:clave
 
inurl:robots.txt site:gov + intext:password
 
s3 site:amazonaws.com filetype:log
 
intitle:"Index of" pass.txt
 
inurl:/filedown.php?file=
 
filetype:xls "nomina"
 
site:*.com intitle:"Thank You For Your Order" intext:Click Here to Download
 
site:https://docs.google.com/spreadsheets edit
 
site:https://docs.google.com/spreadsheets responses
 
site:https://docs.google.com/forms viewanalytics
 
site:https://docs.google.com/forms responses
 
MAIL_HOST filetype:env
 
inurl:"paypal.log" ext:log
 
intitle:"index of" unattend.xml
 
site:https://docs.google.com/document/d/ password
 
site:https://docs.google.com/spreadsheets/d/ password
 
DB_USERNAME filetype:env
 
inurl:old "index of" "wp-config.php"
 
s3 site:amazonaws.com filetype:sql
 
"/FTPSVC2" intitle:"index of"
 
intitle:"index of" "W3SVC1"
 
intext:user.sql intitle:index.of
 
s3 site:amazonaws.com filetype:xls login
 
intext:backup.sql intitle:index.of
 
filetype:inc php -site:github.com -site:sourceforge.net
 
inurl:github.com intext:.ftpconfig -issues
 
site:global.gotomeeting.com inurl:recording
 
"keyed alike" site:gov filetype:pdf
 
intext:"config" intitle:"Index of .ssh"
 
"php class JConfig" AND inurl:configuration AND ext:"bak | old | pdf | php | txt"
 
jmeter.log filetype:log
 
intext:"the WordPress" inurl:wp-config ext:txt
 
intext:"@gmail.com" AND intext:"@yahoo.com" filetype:sql
 
"passport" filetype:xls site:"*.edu.*" | site:"*.gov.*" | site:"*.com.*" | site:"*.org.*" | site:"*.net.*" | site:"*.mil.*"
 
intext:[To Parent Directory] & ext:sql | ext:cnf | ext:config | ext:log
 
ext:txt | ext:sql | ext:cnf | ext:config | ext:log & intext:"admin" | intext:"root" | intext:"administrator" & intext:"password" | intext:"root" | intext:"admin" | intext:"administrator"
 
inurl:_vti_bin/sites.asmx?wsdl | intitle:_vti_bin/sites.asmx?wsdl
 
inurl:/files/_log/ filetype:log
 
inurl:pipermail filetype:txt
 
intext:reports filetype:cache
 
inurl:"/cgi-bin/WS_FTP.LOG"
 
intitle:"index of" users.csv | credentials.csv | accounts.csv
 
intitle:"index of" hosts.csv | firewalls.csv | linux.csv | windows.csv
 
inurl:scanned & documents intitle:"index of" IT
 
intitle:"index of" "hiberfil.sys"
 
intext:"Portador do CPF"
 
inurl:apspassword
 
filetype:doc "Answer Key"
 
filetype:pub "ssh-rsa"
 
inurl:LOG.txt X-System folder
 
filetype:txt "Registration Code"
 
intext:password "Login Info" filetype:txt
 
"site:ghostbin.com " / " "
 
"site:hastebin.com " / " "
 
filetype:txt "License Key"
 
filetype:rdp default.rdp
 
intitle:"index of" pagefile.sys
 
inurl:/_vti_pvt/service.cnf | inurl:/_vti_inf.html | inurl:/_vti_bin/ | inurl:/_vti_bin/spsdisco.aspx
 
intext:"Resource dumped by" intext:jcr -site:adobe.com
 
ext:env intext:APP_ENV= | intext:APP_DEBUG= | intext:APP_KEY=
 
"[HKEY_CURRENT_USERSoftwareSimonTathamPuTTYSessions]" ext:reg
 
filetype:txt line vty 0 4
 
intext:Modified files in JOE when it aborted on JOE was aborted because the terminal closed
 
intext:"please find attached" "login" | password ext:pdf
 
inurl:logs/gravityforms
 
configuration> + filetype:config -github.com
 
inurl:robots.txt intext:Disallow: /web.config
 
/var/www/manage/storage/logs/laravel- ext:log
 
inurl:/yum.log | intitle:yum.log + ext:log
 
intitle:"index of" intext:twr.html
 
intext:"class JConfig {" inurl:configuration.php
 
intext:"define('DB_NAME'," ext:txt
 
inurl:/wp-json/wp/v2/users/ "id":1,"name":" -wordpress.stackexchange.com -stackoverflow.com
 
intext:"PHP Version " ext:php intext:"disabled" intext:"Build Date" intext:"System" intext:"allow_url_fopen"
 
inurl:/wp-content/ai1wm-backups + wpress
 
ext:ppk ssh key -github.com -gitlab
 
inurl:conf/tomcat-users.xml -github
 
inurl:elmah.axd intext:"Powered by ELMAH" -inurl:detail
 
inurl:login.php.bak
 
intitle:"index of" "laravel.log" | "main.yaml" | "server.cfg"
 
intitle:"index of" ".travis.yml" | ".travis.xml"
 
intitle:"index of" "config.yml" | "config.xml" intext:login | auth
 
intitle:"index of" ".gitignore"
 
intext:APIKey ext:js | xml | yml | txt | conf | py -github -stackoverflow intitle:"index of"
 
swiftmailer intitle:"index of" "smtp.yml" | "smtp.xml"
 
intitle:"index of" "config.yml" | "config.xml" intext:login | auth
 
-site:smarty.net ext:tpl intext:"
 
inurl:lighttpd.conf lighttpd site:github.com
 
inurl:nginx.conf nginx site:github.com
 
intext:"successfully" intitle:"index of" config | log | logged -stackoverflow
 
employee "training" intitle:index.of ext:doc | pdf | xls |docx |xlsx
 
hardware | software "migration" intitle:index.of ext:xls | xlsx | doc | docx | pdf
 
ext:log intext:"connection" intitle:"index of" -stackoverflow
 
inurl:travis.yml tornado site:github.com
 
"var miner=new CryptoLoot.Anonymous" intext:CryptoLoot.Anonymous
 
inurl:"/p3p.xml" | intitle: "p3p.xml" -github.com
 
"air confirmation" "passenger(s)"
 
inurl:"debug/default/view?panel=config"
 
inurl:"root?originalDomain"
 
filetype:txt Administrator:500:
 
intext:vmware virtual site:.gov filetype:xls | xlsx | doc | pdf
 
filetype:xls | xlsx intext:cisco -cisco.com site:.gov
 
filetype:xls | xlsx intext:software license site:.gov
 
intitle:"This is pdfTeX, Version"
 
intext:cv OR intext:curriculum vitae "passport details" ext:doc -template
 
allintitle:restricted filetype:doc site:gov
 
filetype:gitattributes intext:CHANGELOG.md -site:github.com
 
filetype:env intext:mail_host + intext:bluehost
 
filetype:env intext:AWS_SECRET
 
AndroidManifest ext:xml -github -gitlab -googlesource
 
inurl:"?db_backup" | inurl:"dbbackup" -site:github.com "sql.gz" | "sql.tgz" | "sql.tar" | "sql.7z"
 
inurl:fisheye AND inurl:changelog -site:atlassian.com -site:github.com -intext:"Log in to FishEye"
 
intitle:"Powered by Qualys SSL Labs"
 
ext:txt {"wallet_address" :", "pool_address" : " ", "pool_password" -git
 
inurl:..//drivers/etc/ intitle:index of
 
inurl:"/bigdump.php" + intitle:"BigDump ver."
 
inurl:/.well-known/security.txt
 
inurl:/daten/webyep-log.txt
 
ext:adr adr filetype:adr "bookmarks.adr"
 
inurl:"/Setup/Default.aspx" "mojoPortal"
 
intitle:"index.of.virtualbox" -mirror -mirrors -public -ubuntu.com -edu -pub
 
"Declassified and Approved for Release by" filetype: pdf
 
intitle:"Index of /logs/" "lighttpd"
 
filetype:env intext:"APP_ENV"
 
filetype:log inurl:"log" "[SERVER_SOFTWARE]"
 
intitle:"Deluge: Web UI" inurl:":8112"
 
intitle:"Deluge: Web UI 1.3"
 
CakePHP filetype:sql intext:password | pwd intext:username | uname intext: Insert into users values
 
intext:"[***] Results from" + ext:txt + "snort-"
 
config.yaml intitle:"index of" vagrantfile
 
allinurl:mc4wp-debug.log ext:log
 
dwsync.xml intitle:index of -gitlab -github
 
intext:database inurl:"laravel.log" ext:log
 
intitle:"index of" inurl:"paypal" log
 
intitle:"index of" intext:"pip-selfcheck.json"
 
inurl:/?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000 | inurl:/?=PHPE9568F35-D428-11d2-A769-00AA001ACF42
 
intitle:"Proberv0." | inurl:/proberv.php
 
intitle:"index of" .env
 
intitle:"index of" docker-compose.yml
 
filetype:sql intext:password | pass | passwd intext:username intext:INSERT INTO `users` VALUES
 
inurl:/gravity_forms/logs ext:txt
 
intext:"Dr.Web (R) Anti-virus. Virus base add-on" + ext:txt
 
ext:pem "PRIVATE KEY" -site:facebook.com -example -test*
 
inurl:"/etc/fail2ban/" + ext:conf
 
inurl:/fantastico_fileslist.txt + ext:txt
 
allinurl:awstats.pl?config=
 
inurl:"/xmlrpc.php?rsd" & ext:php
 
inurl:"plesk-stat"
 
"[Tera Term]" inurl:"teraterm.ini" ext:ini -git
 
"[LocalizedFileNames]" inurl:"desktop.ini" ext:ini -git -wiki
 
allintitle:"Forum Post Assistant :" ext:php -site:joomla.org
 
inurl:"main.php?action=db"
 
inurl:module=coreHome
 
intitle:index.of intext:zc_install intitle:zen-cart
 
"Email delivery powered by Google" ext:pdf OR ext:txt
 
intitle:"PHP Web Stat - Sysinfo" intext:php inurl:stat/sysinfo.php
 
"SiteBar Bookmark Manager" inurl:index.php?w=
 
inurl:"test/php/test.html" Plesk File
 
intitle:"Chorus 2 - Kodi web interface"
 
intitle:Kodi inurl:":8080" "Music. Music;"
 
intitle:"rutorrent v3" AND intext:Uploaded -github.com
 
ext:pdf intext:"Category: Password Management: Hardcoded Password" intext:"Issues)"
 
intext:----- Begin SAP License ----- ext:txt
 
intext:Server.MapPath(".mdb") ext:asp
 
intext:"Set objConn=Server.CreateObject("ADODB.Connection")" ext:asp
 
"Start of NVIDIA bug report log file" ext:log
 
"Do not distribute" (ext:pdf | ext:doc | ext:docx | ext:rtf)
 
"OTL Extras logfile created on:" ext:txt
 
inurl:composer.json filetype:json -site:github.com
 
intext:"softperms.txt" ext:TXT
 
"-- Dumping data for table" ext:sql
 
inurl:wp-links-opml.php
 
inurl:"/horde/test.php"
 
inurl:"wp-security-audit-log" ext:log
 
inurl:/Divi/Changelog.txt /Divi/Changelog.txt
 
"QuickDiag" "by g3n-h@ckm@n" ext:txt
 
ext:txt | ext:conf | ext:inc | ext:doc intext:php class JConfig
 
inurl:FileListAbsolute ext:txt
 
"OTL logfile" "by OldTimer" ext:txt
 
filetype:tpl intext:mysql_connect
 
ext:asax
 
inurl:".hg/store/fncache"
 
ext:vbproj
 
ext:csproj
 
inurl:scan_result_file
 
inurl:/maint/repair.php?repair=1
 
inurl:/secure/attachment/ filetype:log OR filetype:txt
 
ext:log inurl:"/pgadmin"
 
"-- Account dump" ext:sql -git
 
inurl:"wp-content/uploads/file-manager/log.txt"
 
"TX_start" "card_name" ext:log
 
"You're successfully running JSON Server"
 
"Blocking Reason:" ext:log -git
 
inurl:"/logs/www" ext:log
 
intext:uploadOverwrite || intext:OPEN || intext:cwd
 
"Protocol=unreal" ext:ini -git
 
inurl:"/Windows/Cookies/" ext:txt -telecom -forbidden -git
 
"[FFFTP]" ext:ini
 
"random's system information tool" ext:txt
 
inurl:app/config/ intext:parameters.yml intitle:index.of
 
inurl:"dcwp_twitter.php?1="
 
"Consola de Joomla! Debug" inurl:index.php
 
"-----BEGIN X509 CERTIFICATE-----" ext:pem -git
 
"-- MySQL Administrator dump" ext:sql
 
"START securepay" ext:log
 
inurl:"idx_config"
 
"KVP_ENCDATA:Version=1.0" ext:log
 
"MiniToolBox by Farbar" ext:txt
 
"Operating System Intel Recovery" ext:txt
 
"WEB Browser Password Recovery" ext:txt
 
"-- MySQL dump" ext:sql -git
 
inurl:core.windows.net ext:xlsx
 
inurl:"/data/urllist.txt" ext:txt -git
 
"SECRET//NOFORN" ext:pdf
 
"PHP Fatal error: require()" ext:log
 
"Section" inurl:"xorg.conf" ext:conf -wiki
 
"screen mode id:" ext:rdp
 
inurl:"/Windows/Cookies/" ext:txt -git
 
"HTTP" inurl:"access.log" ext:log
 
inurl:"Makefile.in" ext:in
 
"[dirs]" inurl:"mirc.ini" -git
 
"InnoDB:" ext:log
 
"/wp-admin/admin-ajax" ext:txt
 
"Scan result of Farbar Recovery Scan Tool" ext:txt
 
"# AdwCleaner" ext:txt
 
"[PHPSESSID]" ext:log
 
"LGD_CARDNUM" ext:log -site:camper.com
 
"Logfile of Trend Micro HijackThis" ext:log
 
"%@" ext:ascx
 
"SERVER_ADDR" "SERVER_PORT" "SERVER_NAME" ext:log
 
inurl:"mail" ext:mai
 
inurl:"/sitemap.xsd" ext:xsd
 
inurl:"/fb_ca_chain_bundle.crt" ext:crt
 
"# This file was generated by libcurl! Edit at your own risk." ext:txt
 
"havij report" "Target" ext:html
 
intext:Table structure for table `wp_users` filetype:sql
 
"Greenstone receptionist" inurl:"/etc/main.cfg"
 
"PGP SIGNED MESSAGE-----" inurl:"md5sums"
 
inurl:"/phpinfo.php" "PHP Version"
 
"Fatal NI connect error" ", connecting to:" ext:log
 
inurl:"/irclogs/" ext:log
 
inurl:"/attachment/" ext:log
 
filetype:pcmcfg
 
httrack inurl:hts-log.txt ext:txt -github.com
 
intitle:"FormAssembly Enterprise :"
 
inurl:/o/oauth2 inurl:client_id
 
inurl:iProber2.php ext:php
 
allinurl: drive.google.com/open?id=
 
inurl:"/debug/default" intitle:"Yii Debugger"
 
inurl:ManageFilters.jspa?filterView=popular
 
https://paper.dropbox.com inurl:/doc/
 
"PHP Version" inurl:/php/phpinfo.php
 
"[HKEY_CURRENT_USER\Software\sota\FFFTP]" filetype:reg
 
(@gmail.com || @yahoo.com || @hotmail.com) ext:php inurl:compose
 
inurl:calendar.google.com/calendar/embed?src=
 
inurl:log -intext:log ext:log inurl:wp-
 
inurl:wp-content/debug.log
 
inurl:DiGIR.php
 
filetype:sql intext:wp_users phpmyadmin
 
"Index of /wp-content/uploads/backupbuddy_backups" zip
 
intext:"/LM/W3SVC/" ext:asp
 
intext:"/showme.asp" HTTP_ACCEPT
 
filetype:txt "gmail" | "hotmail" | "yahoo" -robots site:gov | site:us
 
inurl:vidyo -site:vidyo.com inurl:portal
 
index of /wp-content/uploads/userpro
 
inurl:configfile.cgi
 
site:github.com filetype:md | filetype:js | filetype:txt "xoxp-"
 
filetype:pdf intitle:"SSL Report"
 
intitle:"Skipfish . scan"
 
filetype:rcf inurl:vpn
 
inurl:"sugarcrm.log" ext:log -git -google
 
intitle:"TurnKey LAMP" intext:"turnkey lamp release notes" "Apache PHP information"
 
inurl:haproxy-status site:example.com
 
intext:"Microsoft(R) Server Maintenance Utility (Unicode)" ext:txt
 
"Stats generated by pisg v0.73"
 
inurl:"server-status" intext:"Apache Server Status"
 
inurl:http | -inurl:https inurl:ftp ext:pdf taxreturn
 
inurl:"trace" ext:axd intext:"password"
 
-inurl:http | -inurl:https inurl:ftp ext:xls | ext:xlsx bank
 
intitle:Tomcat Status | inurl:/status?full=true
 
site:ws.kik.com | site:ws2.kik.com k=
 
site:target.com ext:xml | ext:conf | ext:cnf | ext:reg | ext:inf | ext:rdp | ext:cfg | ext:txt | ext:ora | ext:ini
 
inurl:xampp inurl:perlinfo.pl ext:pl
 
site:.edu | .gov ext:bkf | ext:bkp | ext:bak | ext:old | ext:backup
 
inurl:src/viewcvs.cgi/log/.c?=
 
inurl: mil|/issue.php filetype:xls
 
filetype:pac inurl:"/proxy"
 
intext:bbdd index.of "/" "Parent Directory"
 
intext:/homedir/.cpanel-datastore/
 
inurl:cgi-bin ext:pl intext:"-rwxr-xr-x"
 
intext:"Full path to a .htpasswd file in this dir:" filetype:php
 
inurl:wp-admin/admin-ajax.php inurl:wp-config.php
 
inurl:access.cnf ext:cnf
 
intext:OLD_FOREIGN_KEY_CHECKS"; = ext:txt
 
"Futon on Apache" inurl:_utils
 
phpMyAdmin SQL Dump
 
"signons.sqlite" intitle:"index of"
 
intitle:"Index of" "mail" "Inbox" "Sent"
 
filetype:pcf vpn OR Group
 
intitle:"index of" "fic" "ndx"
 
inurl:/dbg-wizard.php
 
intitle:"index of" "archive.pst" -contrib
 
filetype:pub inurl:ssh
 
intext:JSESSIONID OR intext:PHPSESSID inurl:access.log ext:log
 
intitle:index of /weekly cpbackup
 
filetype:xml inurl:/WEB-INF/ inurl:ftp:// -www
 
inurl:"/server-info" intext:"Loaded Modules"
 
inurl:"installer-log.txt" intext:"DUPLICATOR INSTALL-LOG"
 
ext:pem intext:BEGIN CERTIFICATE
 
ext:log telnet intext:password
 
filetype:mobileconfig intext:password OR intext:pass
 
ext:txt inurl:gov intext:"Content-Type: text/plain; charset=utf-8" AND intext:"Received: from "
 
ext:msg OR ext:eml site:gov OR site:edu
 
filetype:log intext:org.apache.hadoop.hdfs
 
intext:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8 AND (ext:txt OR ext:csv OR ext:xls OR ext:lst)
 
(intext:mail AND intext:samAccountName) AND (filetype:xlsx OR filetype:xls OR filetype:csv OR filetype:txt)
 
"google confidential" filetype:pdf
 
filetype:sql site:com and "insert into" admin "2014"
 
filetype:sql site:gov and "insert into"
 
("DMZ" | "Public IP" | "Private IP") filetype:xls
 
filetype:pdf "acunetix website audit" "alerts summary"
 
inurl:crossdomain filetype:xml intext:allow-access-from
 
inurl:clientaccesspolicy filetype:xml intext:allow-from
 
site:bitbucket.org inurl:.bash_history
 
inurl:mikrotik filetype:backup
 
intext:phpMyAdmin SQL Dump filetype:sql intext:INSERT INTO `admin` (`id`, `user`, `password`) VALUES -github
 
inurl:github.com intext:sftp-conf.json +intext:/wp-content/
 
inurl:config "fetch = +refs/heads/*:refs/remotes/origin/*"
 
inurl:/wp-content/uploads/ filetype:sql
 
filetype:bak (inurl:php | inurl:asp | inurl:rb)
 
inurl:"jmx-console/HtmlAdaptor" intitle:Mbean
 
site:github.com inurl:"known_hosts" "ssh-rsa"
 
site:github.com inurl:"id_rsa" -inurl:"pub"
 
filetype:xml inurl:sitemap
 
inurl:tar filetype:gz
 
filetype:php intext:"PROJECT HONEY POT ADDRESS DISTRIBUTION SCRIPT"
 
inurl:*/webalizer/* intitle:"Usage Statistics"
 
intitle:index.of intext:.ssh
 
filetype:txt inurl:~~Wordpress2.txt
 
filetype:txt inurl:wp-config.txt
 
inurl:fluidgalleries/dat/login.dat
 
"information_schema" filetype:sql
 
inurl:~~joomla3.txt filetype:txt
 
intitle:"WAMPSERVER Homepage" & intext:"Server Configuration"
 
inurl:wp-content/uploads/dump.sql
 
inurl:"zendesk.com/attachments/token" site:zendesk.com
 
allintext: /iissamples/default/
 
filetype:php -site:php.net intitle:phpinfo "published by the PHP Group"
 
filetype:ini "This is the default settings file for new PHP installations"
 
inurl:"php?id=" intext:"DB_Error Object "
 
runtimevar softwareVersion=
 
ext:gnucash
 
inurl:admin intext:username= AND email= AND password= OR pass= filetype:xls
 
inurl:newsnab/www/ automated.config.php
 
inurl:.com/configuration.php-dist
 
inurl:"phpmyadmin/index.php" intext:"[ Edit ] [ Create PHP Code ] [ Refresh ]"
 
filetype:avastlic
 
filetype:docx Domain Registrar $user $pass
 
intext:"~~Joomla1.txt" title:"Index of /"
 
intext:"Thank you for your purchase/trial of ALWIL Software products.:"
 
?intitle:index.of?".mysql_history"
 
allintext:D.N.I filetype:xls
 
List of Phone Numbers (In XLS File ) allinurl:telefonos filetype:xls
 
Microsoft-IIS/7.0 intitle:index.of name size
 
Google Dork inurl:Curriculum Vitale filetype:doc ( Vital Informaticon , Addres, Telephone Numer, SSN , Full Name, Work , etc ) In Spanish.
 
Google Dork For Social Security Number ( In Spain and Argentina is D.N.I )
 
filetype:old (mysql_connect) ()
 
filetype:old (define)(DB_USER|DB_PASS|DB_NAME)
 
inurl:"trace.axd" ext:axd "Application Trace"
 
intitle:index.of? configuration.php.zip
 
inurl:"/includes/config.php"
 
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
 
+intext:"AWSTATS DATA FILE" filetype:txt
 
filetype:ini "Bootstrap.php" (pass|passwd|password|pwd)
 
inurl:server-info intitle:"Server Information" Apache Server Information
 
filetype:pem "Microsoft"
 
site:docs.google.com intitle:(cv Or resume OR curriculum vitae)
 
site:mediafire.com cv Or resume OR curriculum vitae filetype:pdf OR doc
 
site:stashbox.org cv Or resume OR curriculum vitae filetype:pdf OR doc
 
inurl:/push/ .pem apns -"push notifications" "bag attributes"
 
site:dl.dropbox.com filetype:pdf cv OR curriculum vitae OR resume
 
inurl:sarg inurl:siteuser.html
 
filetype:xls + password + inurl:.com
 
allinurl:http://www.google.co.in/latitude/apps/badge/api?user=
 
intext:db_pass inurl:settings.ini
 
inurl:app/etc/local.xml
 
allinurl:/xampp/security.php
 
inurl:phpinfo.php
 
inurl:configuration.php-dist
 
inurl:"config.php.new" +vbulletin
 
filetype: log inurl:"access.log" +intext:"HTTP/1.1"
 
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
 
"Cisco PIX Security Appliance Software Version" + "Serial Number" + "show ver" -inurl
 
intitle:"AppServ Open Project *" "AppServ is a merging open source software installer package" -phpbb
 
intitle:"LOGREP - Log file reporting system" -site:itefix.no
 
(intitle:"PRTG Traffic Grapher" inurl:"allsensors")|(intitle:"PRTG Traffic Grapher - Monitoring Results")
 
intitle:"Joomla - Web Installer"
 
"not for public release" -.edu -.gov -.mil
 
intext:ViewCVS inurl:Settings.php
 
inurl:build.err
 
inurl:/cgi-bin/pass.txt
 
(intitle:WebStatistica inurl:main.php) | (intitle:"WebSTATISTICA server") -inurl:statsoft -inurl:statsoftsa -inurl:statsoftinc.com -edu -software -rob
 
inurl:wp-mail.php + "There doesn't seem to be any new mail."
 
intitle:"Welcome to F-Secure Policy Manager Server Welcome Page"
 
intitle:Bookmarks inurl:bookmarks.html "Bookmarks
 
intitle:"urchin (5|3|admin)" ext:cgi
 
rdbqds -site:.edu -site:.mil -site:.gov
 
contacts ext:wml
 
intitle:"admin panel" +"Powered by RedKernel"
 
intitle:"curriculum vitae" filetype:doc
 
ext:(doc | pdf | xls | txt | ps | rtf | odt | sxw | psw | ppt | pps | xml) (intext:confidential salary | intext:"budget approved") inurl:confidential
 
site:www.mailinator.com inurl:ShowMail.do
 
allinurl:cdkey.txt
 
filetype:PS ps
 
filetype:QBW qbw
 
inurl:XcCDONTS.asp
 
ext:CDX CDX
 
ext:jbf jbf
 
ext:ccm ccm -catacomb
 
ext:DCA DCA
 
ext:DBF DBF
 
ext:plist filetype:plist inurl:bookmarks.plist
 
ext:ics ics
 
"MacHTTP" filetype:log inurl:machttp.log
 
allinurl:"weblog/referrers"
 
inurl:getmsg.html intitle:hotmail
 
#VALUE!
 
"#mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3
 
filetype:ora tnsnames
 
-site:php.net -"The PHP Group" inurl:source inurl:url ext:pHp
 
intitle:"web server status" SSH Telnet
 
inurl:netscape.hst
 
ext:reg "username=*" putty
 
inurl:"bookmark.htm"
 
inurl:netscape.hst
 
intitle:"edna:streaming mp3 server" -forums
 
inurl:netscape.ini
 
ext:txt inurl:dxdiag
 
intitle:"FTP root at"
 
filetype:ctt "msn"
 
filetype:ctt Contact
 
intext:gmail invite intext:http://gmail.google.com/gmail/a
 
intitle:"index.of" .diz .nfo last modified
 
filetype:blt "buddylist"
 
filetype:cnf inurl:_vti_pvt access.cnf
 
ext:conf inurl:rsyncd.conf -cvs -man
 
inurl:preferences.ini "[emule]"
 
intitle:"welcome.to.squeezebox"
 
inurl:ds.py
 
ext:dat bpk.dat
 
php-addressbook "This is the addressbook for *" -warning
 
"Generated by phpSystem"
 
intitle:"Multimon UPS status page"
 
inurl:"/axs/ax-admin.pl" -script
 
ext:gho gho
 
ext:pqi pqi -database
 
ext:vmdk vmdk
 
ext:vmx vmx
 
intitle:"PHP Advanced Transfer" (inurl:index.php | inurl:showrecent.php )
 
ext:txt "Final encryption key"
 
intitle:"DocuShare" inurl:"docushare/dsweb/" -faq
 
"Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)" ext:log
 
intitle:"Apache::Status" (inurl:server-status | inurl:status.html | inurl:apache.html)
 
inurl:report "EVEREST Home Edition "
 
intitle:phpinfo "PHP Version"
 
filetype:myd myd -CVS
 
intitle:"PhpMyExplorer" inurl:"index.php" -cvs
 
ext:cgi inurl:editcgi.cgi inurl:file=
 
filetype:config web.config -CVS
 
filetype:ns1 ns1
 
filetype:pst pst -from -to -date
 
ext:conf NoCatAuth -cvs
 
inurl:"putty.reg"
 
filetype:inf inurl:capolicy.inf
 
"Certificate Practice Statement" inurl:(PDF | DOC)
 
intitle:"AppServ Open Project" -site:www.appservnetwork.com
 
intitle:"Web Server Statistics for ****"
 
filetype:php inurl:index inurl:phpicalendar -site:sourceforge.net
 
intitle:"Index of" upload size parent directory
 
ext:nsf nsf -gov -mil
 
inurl:log.nsf -gov
 
intitle:"index.of *" admin news.asp configview.asp
 
inurl:cgi-bin/testcgi.exe "Please distribute TestCGI"
 
ext:mdb inurl:*.mdb inurl:fpdb shop.mdb
 
intitle:"ASP Stats Generator *.*" "ASP Stats Generator" "2003-2004 weppos"
 
ext:ini intext:env.ini
 
"Installed Objects Scanner" inurl:default.asp
 
inurl:odbc.ini ext:ini -cvs
 
intext:SQLiteManager inurl:main.php
 
+":8080" +":3128" +":80" filetype:txt
 
inurl:/_layouts/settings
 
ext:ldif ldif
 
filetype:vcs vcs
 
ext:log "Software: Microsoft Internet Information Services *.*"
 
inurl:"/names.nsf?OpenDatabase"
 
filetype:asp DBQ=" * Server.MapPath("*.mdb")
 
filetype:pst inurl:"outlook.pst"
 
filetype:pdb pdb backup (Pilot | Pluckerdb)
 
filetype:pot inurl:john.pot
 
filetype:xls inurl:"email.xls"
 
filetype:reg "Terminal Server Client"
 
inurl:snitz_forums_2000.mdb
 
filetype:rdp rdp
 
filetype:qbb qbb
 
filetype:bkf bkf
 
( filetype:mail | filetype:eml | filetype:mbox | filetype:mbx ) intext:password|subject
 
filetype:QDF QDF
 
"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"
 
ext:asp inurl:pathto.asp
 
mail filetype:csv -site:gov intext:name
 
filetype:xls -site:gov inurl:contact
 
intext:"Session Start * * * *:*:* *" filetype:log
 
(inurl:"robot.txt" | inurl:"robots.txt" ) intext:disallow filetype:txt
 
filetype:fp3 fp3
 
filetype:fp7 fp7
 
filetype:cfg auto_inst.cfg
 
filetype:fp5 fp5 -site:gov -site:mil -"cvs log"
 
"allow_call_time_pass_reference" "PATH_INFO"
 
inurl:*db filetype:mdb
 
filetype:ora ora
 
intitle:"Index Of" -inurl:maillog maillog size
 
inurl:email filetype:mdb
 
data filetype:mdb -site:gov -site:mil
 
intitle:"Index Of" cookies.txt "size"
 
inurl:backup filetype:mdb
 
inurl:forum filetype:mdb
 
intext:(password | passcode) intext:(username | userid | user) filetype:csv
 
inurl:profiles filetype:mdb
 
intitle:"index of" +myd size
 
"sets mode: +p"
 
"sets mode: +s"
 
inurl:ssl.conf filetype:conf
 
e-mail address filetype:csv csv
 
BEGIN (CERTIFICATE|DSA|RSA) filetype:csr
 
BEGIN (CERTIFICATE|DSA|RSA) filetype:key
 
"# Dumping data for table (username|user|users|password)"
 
filetype:conf inurl:unrealircd.conf -cvs -gentoo
 
intitle:"Welcome to ntop!"
 
filetype:mny mny
 
inurl:/public/?Cmd=contents
 
filetype:ctt ctt messenger
 
94FBR "ADOBE PHOTOSHOP"
 
inurl:forward filetype:forward -cvs
 
inurl:"cacti" +inurl:"graph_view.php" +"Settings Tree View" -cvs -RPM
 
inurl:"/cricket/grapher.cgi"
 
intitle:"System Statistics" +"System and Network Information Center"
 
intitle:"Big Sister" +"OK Attention Trouble"
 
"Mecury Version" "Infastructure Group"
 
inurl:php.ini filetype:ini
 
intitle:intranet inurl:intranet +intext:"phone"
 
filetype:blt blt +intext:screenname
 
filetype:log cron.log
 
filetype:log access.log -CVS
 
filetype:lic lic intext:key
 
intitle:"index of" mysql.conf OR mysql_config
 
filetype:eml eml +intext:"Subject" +intext:"From"
 
filetype:mbx mbx intext:Subject
 
filetype:wab wab
 
"Request Details" "Control Tree" "Server Variables"
 
"HTTP_FROM=googlebot" googlebot.com "Server_Software="
 
filetype:conf inurl:firewall -intitle:cvs
 
inurl:"smb.conf" intext:"workgroup" filetype:conf
 
inurl:tdbin
 
intext:"Tobias Oetiker" "traffic analysis"
 
inurl:cgi-bin/printenv
 
inurl:perl/printenv
 
inurl:server-info "Apache Server Information"
 
inurl:fcgi-bin/echo
 
inurl:server-status "apache"
 
"Running in Child mode"
 
"This is a Shareaza Node"
 
allinurl:servlet/SnoopServlet
 
allinurl:/examples/jsp/snp/snoop.jsp
 
inurl:"newsletter/admin/"
 
inurl:"newsletter/admin/" intitle:"newsletter admin"
 
"Index of" / "chat/logs"
 
inurl:vbstats.php "page generated"
 
"#mysql dump" filetype:sql
 
intitle:index.of inbox dbx
 
intitle:index.of inbox dbx
 
intitle:index.of inbox
 
"Network Vulnerability Assessment Report"
 
"Host Vulnerability Summary Report"
 
"not for distribution" confidential
 
"Thank you for your order" +receipt
 
inurl:changepassword.asp
 
"Most Submitted Forms and Scripts" "this section"
 
inurl:admin filetype:xls
 
inurl:admin intitle:login
 
intitle:admin intitle:login
 
inurl:main.php phpMyAdmin
 
"phpMyAdmin" "running on" inurl:"main.php"
 
intitle:"Usage Statistics for" "Generated by Webalizer"
 
inurl:ipsec.secrets -history -bugs
 
"robots.txt" "Disallow:" filetype:txt
 
inurl:ipsec.secrets "holds shared secrets"
 
intitle:"statistics of" "advanced web statistics"
 
inurl:main.php Welcome to phpMyAdmin
 
intitle:"wbem" compaq login "Compaq Information Technologies Group"
 
intitle:index.of "Apache" "server at"
 
intitle:index.of dead.letter
 
intitle:index.of ws_ftp.ini
 
inurl:cgiirc.config
 
intitle:index.of cgiirc.config
 
"# phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
 
"# phpMyAdmin MySQL-Dump" filetype:txt
 
inurl:ipsec.conf -intitle:manpage
 
intitle:index.of mystuff.xml
 
site:edu admin grades
 
filetype:ctl Basic
 
"This summary was generated by wwwstat"
 
"These statistics were produced by getstats"
 
intitle:index.of haccess.ctl
 
"This report was generated by WebLog"
 
intitle:index.of robots.txt
 
"cacheserverreport for" "This analysis was produced by calamaris"
 
buddylist.blt
 
intitle:index.of finances.xls
 
intitle:"Ganglia" "Cluster Report for"
 
intitle:index.of mt-db-pass.cgi
 
"# Dumping data for table"
 
intitle:"Index of" dbconvert.exe chats
 
intitle:"Index of" finance.xls


内容来源网络,仅供学习研究,请勿用于非法,否则后果自负!


Hackyh'Blog版权声明:以上内容作者已申请原创保护,未经允许不得转载,侵权必究!授权事宜、对本内容有异议或投诉,敬请联系网站管理员,我们将尽快回复您,谢谢合作!

网络技术
情侣网站源码 情侣博客 情侣小站 网站备份文件泄漏漏洞的挖掘技巧和思路

游客 回复需填写必要信息
召唤伊斯特瓦尔