利用搜索引擎语法 嗅探渗透测试寻找网络敏感信息
导读:通过搜索引擎,使用关键词,可以快速的搜索到自己想要的数据,同时通过这种方法,可以快速定位存在暴露敏感信息的服务器命令主要是是看自己的需求进行编写拼凑,下面是一些搜索命令,仅供学习1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950...
通过搜索引擎,使用关键词,可以快速的搜索到自己想要的数据,
同时通过这种方法,可以快速定位存在暴露敏感信息的服务器
例如遍历数据库备份目录
命令主要是是看自己的需求进行编写拼凑,下面是一些搜索命令,仅供学习
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.phpinurl:/wp-content/uploads/ "phpMyAdmin SQL Dump"inurl:/wp-content/uploads/wpdm-cacheinurl:phpmyadmin/sql.php?server=1inurl:ALFA_DATA intitle:"index of"site:*/phpmyadmin/server_privileges.phpsite:*/phpmyadmin/server_sql.phpsite:.gov.co intitle:Index ofintitle:"index of" intext:"senha"intitle:"Index of" ws_ftp.iniintitle:"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:docinurl:ftp -inurl:(http|https) intext:"@gmail.com" intext:subject fwd|confidential|important|CARD|cvvintitle:"index of" "secret.yaml"inurl:"dcwp_twitter.php"intitle:"index of" "application.properties"ext:(doc | pdf | xls | txt |) (intext:confidential salary) inurl:confidentialfiletype:log inurl:paypalintitle:final.attendee.list | inurl:final.attendee.listext:xlsx inurl:databaseinurl:https://trello.com AND intext:@gmail.com AND intext:passwordallintext:@gmail.com filetype:logintitle:"index of" intext:"apikey.txtinurl:"/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:logintitle:"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:envext:sql | ext:txt intext:"-- phpMyAdmin SQL Dump --" + intext:"admin""secret_key_base:" ext:exs | ext:txt | ext:env | ext:cfgsite:gov ext:sql | ext:dbf | ext:mdbintitle:"index of" "Clientaccesspolicy.xml"Index of /_vti_pvt +"*.pwd"intitle:"index of" intext:credentialsintitle:"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:sqlintitle:"index of" "/xampp/htdocs" | "C:/xampp/htdocs/""* Authentication Unique Keys and Salts" ext:txt | ext:logallintext:"Index Of" "cookies.txt"ext:txt | ext:log | ext:cfg | ext:yml "administrator:500:""index of" "/home/000~ROOT~000/etc"intitle:"PowerMTA" inurl:logsallintext:"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:txtintitle:"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:iniintitle:"index of" "composer.lock""index of" "callback.php"site:ftp://ftp.*.* ext:sqlintext:admin ext:sql inurl:adminext: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.xmlintext:ISUR_MACHINE IIS -logallintext:username,password filetype:logintitle:"index of" exception.logintitle:"report" ("Fortify" | "Web Inspect") filetype:pdfintitle:"report" ("OpenVAS" | "Nikto") ext:pdf OR ext:htmlintitle:"report" ("qualys" | "acunetix" | "nessus" | "netsparker" | "nmap") filetype:htmlintitle:"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/Systemintitle:"index of" "id_rsa.pub"intext:"Not to be distributed" ext:doc OR ext:pdf OR ext:xls OR ext:xlsxindex of /backend/prod/config"Index of" "/access""index of" "siri"intitle:"index of /" "*key.pem"intext:"index of /" "*.yaml"intitle:"index of" secrets.ymlintitle:"index of" admin.tarindex of .svn/text-base/index.php.svn-baseintext:"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:logintitle:"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:logintitle:"index of" "wp-admin.zip"inurl:admin intitle:index of ext:sql | xls | xml | json | csvintitle:index of config.aspintitle:"index of" "var/log/""index of" /ftp/logsintitle:"index of" "auth.config"index.of:"pcap" -site:stackoverflow.com -site:github.comintitle:"index of" ".config"intitle:"index of" "adminsubscribeack.txt"intitle:"index of" "auth_config.php""index of" /private/logsallinurl: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/logsfiletype:sql intext: "sql dump"ext:sql intext:"-- phpMyAdmin SQL Dumpintitle:"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:txtintitle:"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.logsintitle:"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.bakinurl: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" -gitintitle:"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.jsonintitle:"index of" admin.txtintitle:"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.xmlintitle:"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.txtintitle:"index of" "dovecot.key" OR "dovecot.crt.cache" OR "dovecot.crt"intitle:"index of" "token.json"intitle:"index of" settings.xmlintitle:"index of" "credentials.ini"intitle:"index of" /insecure_private_keyintitle:"index of" db.jsonintitle:"index of" "credentials.json"intitle:"index of" machine.configintitle:"index of" apache.logintitle:"index of" /.ssh/id_rsa OR id_rsa.pubintitle:"index of" /known_hostsintitle:"index of" "syslog"intitle:"index of" keepass.kdbx OR database.kdbxintitle:"index of" "/cron.log"intitle:"Index of" db_mysql.incintitle:"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:keyintitle:"index of" errorlog.txtintitle:"index of" default.rdpintext:"Current Configuration:" ext:cfg -gitintitle:"index of" "vpn-config.*"intitle:"index of" cvsweb.conffiletype:reg reg HKEY_USERS -gitfiletype:reg reg HKEY_CLASSES_ROOT -gitfiletype:reg reg [HKEY_CURRENT_USERSoftware] -gitext:cfg tac_plus.cfginurl:-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:cfgintext:"index of /" "token.yml"intitle:"index of" database.ymlintitle:"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.xmlintitle:"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.comintitle:index.of "keys.txt"intitle:"index.of" intext:"api.txt"intitle:"index.of" intext:"access.txt"accdb OR accde intitle:"index of" -pub -google -bookskrb.conf OR krb.realms intitle:"index of" -public -archive -packages -pubfiletype: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.keyintitle:"index of" ticket.confintitle:"index of" crontab.confintitle:"index of" lesshsQ/ OR .lesshst/ -pool -pub"fetchmailrc" intitle:"index of" -linuxinurl:"_notes/dwsync.xml"intitle:"index of" "wp-security-audit-log""MailChimp API error:" ext:loginurl:"/fmi/webd" intitle:"FileMaker WebDirect"[ipn] ext:loginurl:"web.config" & intext:"Data Source" & "User ID" & "Password" & "connectionString" & ext:config -gitNavicat MySQL Data Transfer filetype:sqlext:sql intext:@gmail.com intext:e10adc3949ba59abbe56e057f20f883efiletype:"xls | xlsx | doc | docx | ppt | pptx | pdf" site:gov "FOUO" | "NOFORN" | "Confidential"intext:"@outlook.com" ext:logintext:"@gmail.com" ext:logintitle:"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:logsdb_password filetype:env -site:github.com -gitintitle:index.of "key.txt"intitle:index.of "credential.txt""accounts.xlsx" ext:xlsxintitle:index.of "userpass.txt"site:mypublicinbox.com intitle:emailsite:*.freshservice.com/support/solutionsinurl:"/.vscode/sftp.json"intitle:"Index Of" intext:sftp-config.jsoninurl:"/.vscode/ftp-sync.json"intitle:"index of" "web.config.txt"site:*/wp-settings.phpsite:*/logs/error.logsite:*/*/conf/httpd.confinurl:credentials.txt -github -git -gitlabsite:ftp.*.* index of: manifest.xmlindex.of "crossdomain.xml"intitle:"index of" "debian.conf"intitle:"index of" inurl:/*sql* filetype:loginurl:/application/config/database.php*intitle:"index of" "/mysql.log"site:*/sitemap/sitemap.xml"Scanned by Camscanner" filetype:pdfinurl: /config.txt ext:txt intext:site:*/phpMyAdmin/robots.txtsite:*/robots.txt intext:User-agent:site:*/log/access_logintitle:"index of" "debian.cnf"ext:sql intext:"-- phpMyAdmin SQL Dump" -site:github.*intitle:index.of.?.config.inisite:docs.google.com inurl:forms | viewanalytics intext:see previous responsesext:sql intext:contrasenasite:*/phpinfo.php intitle:"phpinfo()"ext:sql intext:claveinurl:robots.txt site:gov + intext:passwords3 site:amazonaws.com filetype:logintitle:"Index of" pass.txtinurl:/filedown.php?file=filetype:xls "nomina"site:*.com intitle:"Thank You For Your Order" intext:Click Here to Downloadsite:https://docs.google.com/spreadsheets editsite:https://docs.google.com/spreadsheets responsessite:https://docs.google.com/forms viewanalyticssite:https://docs.google.com/forms responsesMAIL_HOST filetype:envinurl:"paypal.log" ext:logintitle:"index of" unattend.xmlsite:https://docs.google.com/document/d/ passwordsite:https://docs.google.com/spreadsheets/d/ passwordDB_USERNAME filetype:envinurl: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.ofs3 site:amazonaws.com filetype:xls loginintext:backup.sql intitle:index.offiletype:inc php -site:github.com -site:sourceforge.netinurl:github.com intext:.ftpconfig -issuessite:global.gotomeeting.com inurl:recording"keyed alike" site:gov filetype:pdfintext:"config" intitle:"Index of .ssh""php class JConfig" AND inurl:configuration AND ext:"bak | old | pdf | php | txt"jmeter.log filetype:logintext:"the WordPress" inurl:wp-config ext:txtintext:"@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:logext: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?wsdlinurl:/files/_log/ filetype:loginurl:pipermail filetype:txtintext:reports filetype:cacheinurl:"/cgi-bin/WS_FTP.LOG"intitle:"index of" users.csv | credentials.csv | accounts.csvintitle:"index of" hosts.csv | firewalls.csv | linux.csv | windows.csvinurl:scanned & documents intitle:"index of" ITintitle:"index of" "hiberfil.sys"intext:"Portador do CPF"inurl:apspasswordfiletype:doc "Answer Key"filetype:pub "ssh-rsa"inurl:LOG.txt X-System folderfiletype:txt "Registration Code"intext:password "Login Info" filetype:txt"site:ghostbin.com " / " ""site:hastebin.com " / " "filetype:txt "License Key"filetype:rdp default.rdpintitle:"index of" pagefile.sysinurl:/_vti_pvt/service.cnf | inurl:/_vti_inf.html | inurl:/_vti_bin/ | inurl:/_vti_bin/spsdisco.aspxintext:"Resource dumped by" intext:jcr -site:adobe.comext:env intext:APP_ENV= | intext:APP_DEBUG= | intext:APP_KEY="[HKEY_CURRENT_USERSoftwareSimonTathamPuTTYSessions]" ext:regfiletype:txt line vty 0 4intext:Modified files in JOE when it aborted on JOE was aborted because the terminal closedintext:"please find attached" "login" | password ext:pdfinurl:logs/gravityformsconfiguration> + filetype:config -github.cominurl:robots.txt intext:Disallow: /web.config/var/www/manage/storage/logs/laravel- ext:loginurl:/yum.log | intitle:yum.log + ext:logintitle:"index of" intext:twr.htmlintext:"class JConfig {" inurl:configuration.phpintext:"define('DB_NAME'," ext:txtinurl:/wp-json/wp/v2/users/ "id":1,"name":" -wordpress.stackexchange.com -stackoverflow.comintext:"PHP Version " ext:php intext:"disabled" intext:"Build Date" intext:"System" intext:"allow_url_fopen"inurl:/wp-content/ai1wm-backups + wpressext:ppk ssh key -github.com -gitlabinurl:conf/tomcat-users.xml -githubinurl:elmah.axd intext:"Powered by ELMAH" -inurl:detailinurl:login.php.bakintitle:"index of" "laravel.log" | "main.yaml" | "server.cfg"intitle:"index of" ".travis.yml" | ".travis.xml"intitle:"index of" "config.yml" | "config.xml" intext:login | authintitle:"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.cominurl:nginx.conf nginx site:github.comintext:"successfully" intitle:"index of" config | log | logged -stackoverflowemployee "training" intitle:index.of ext:doc | pdf | xls |docx |xlsxhardware | software "migration" intitle:index.of ext:xls | xlsx | doc | docx | pdfext:log intext:"connection" intitle:"index of" -stackoverflowinurl:travis.yml tornado site:github.com"var miner=new CryptoLoot.Anonymous" intext:CryptoLoot.Anonymousinurl:"/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 | pdffiletype:xls | xlsx intext:cisco -cisco.com site:.govfiletype:xls | xlsx intext:software license site:.govintitle:"This is pdfTeX, Version"intext:cv OR intext:curriculum vitae "passport details" ext:doc -templateallintitle:restricted filetype:doc site:govfiletype:gitattributes intext:CHANGELOG.md -site:github.comfiletype:env intext:mail_host + intext:bluehostfiletype:env intext:AWS_SECRETAndroidManifest ext:xml -github -gitlab -googlesourceinurl:"?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" -gitinurl:..//drivers/etc/ intitle:index ofinurl:"/bigdump.php" + intitle:"BigDump ver."inurl:/.well-known/security.txtinurl:/daten/webyep-log.txtext: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: pdfintitle:"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 valuesintext:"[***] Results from" + ext:txt + "snort-"config.yaml intitle:"index of" vagrantfileallinurl:mc4wp-debug.log ext:logdwsync.xml intitle:index of -gitlab -githubintext:database inurl:"laravel.log" ext:logintitle:"index of" inurl:"paypal" logintitle:"index of" intext:"pip-selfcheck.json"inurl:/?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000 | inurl:/?=PHPE9568F35-D428-11d2-A769-00AA001ACF42intitle:"Proberv0." | inurl:/proberv.phpintitle:"index of" .envintitle:"index of" docker-compose.ymlfiletype:sql intext:password | pass | passwd intext:username intext:INSERT INTO `users` VALUESinurl:/gravity_forms/logs ext:txtintext:"Dr.Web (R) Anti-virus. Virus base add-on" + ext:txtext:pem "PRIVATE KEY" -site:facebook.com -example -test*inurl:"/etc/fail2ban/" + ext:confinurl:/fantastico_fileslist.txt + ext:txtallinurl:awstats.pl?config=inurl:"/xmlrpc.php?rsd" & ext:phpinurl:"plesk-stat""[Tera Term]" inurl:"teraterm.ini" ext:ini -git"[LocalizedFileNames]" inurl:"desktop.ini" ext:ini -git -wikiallintitle:"Forum Post Assistant :" ext:php -site:joomla.orginurl:"main.php?action=db"inurl:module=coreHomeintitle:index.of intext:zc_install intitle:zen-cart"Email delivery powered by Google" ext:pdf OR ext:txtintitle:"PHP Web Stat - Sysinfo" intext:php inurl:stat/sysinfo.php"SiteBar Bookmark Manager" inurl:index.php?w=inurl:"test/php/test.html" Plesk Fileintitle:"Chorus 2 - Kodi web interface"intitle:Kodi inurl:":8080" "Music. Music;"intitle:"rutorrent v3" AND intext:Uploaded -github.comext:pdf intext:"Category: Password Management: Hardcoded Password" intext:"Issues)"intext:----- Begin SAP License ----- ext:txtintext:Server.MapPath(".mdb") ext:aspintext:"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:txtinurl:composer.json filetype:json -site:github.comintext:"softperms.txt" ext:TXT"-- Dumping data for table" ext:sqlinurl:wp-links-opml.phpinurl:"/horde/test.php"inurl:"wp-security-audit-log" ext:loginurl:/Divi/Changelog.txt /Divi/Changelog.txt"QuickDiag" "by g3n-h@ckm@n" ext:txtext:txt | ext:conf | ext:inc | ext:doc intext:php class JConfiginurl:FileListAbsolute ext:txt"OTL logfile" "by OldTimer" ext:txtfiletype:tpl intext:mysql_connectext:asaxinurl:".hg/store/fncache"ext:vbprojext:csprojinurl:scan_result_fileinurl:/maint/repair.php?repair=1inurl:/secure/attachment/ filetype:log OR filetype:txtext:log inurl:"/pgadmin""-- Account dump" ext:sql -gitinurl:"wp-content/uploads/file-manager/log.txt""TX_start" "card_name" ext:log"You're successfully running JSON Server""Blocking Reason:" ext:log -gitinurl:"/logs/www" ext:logintext:uploadOverwrite || intext:OPEN || intext:cwd"Protocol=unreal" ext:ini -gitinurl:"/Windows/Cookies/" ext:txt -telecom -forbidden -git"[FFFTP]" ext:ini"random's system information tool" ext:txtinurl:app/config/ intext:parameters.yml intitle:index.ofinurl:"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:loginurl:"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 -gitinurl:core.windows.net ext:xlsxinurl:"/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:rdpinurl:"/Windows/Cookies/" ext:txt -git"HTTP" inurl:"access.log" ext:loginurl:"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:loginurl:"mail" ext:maiinurl:"/sitemap.xsd" ext:xsdinurl:"/fb_ca_chain_bundle.crt" ext:crt"# This file was generated by libcurl! Edit at your own risk." ext:txt"havij report" "Target" ext:htmlintext: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:loginurl:"/irclogs/" ext:loginurl:"/attachment/" ext:logfiletype:pcmcfghttrack inurl:hts-log.txt ext:txt -github.comintitle:"FormAssembly Enterprise :"inurl:/o/oauth2 inurl:client_idinurl:iProber2.php ext:phpallinurl: drive.google.com/open?id=inurl:"/debug/default" intitle:"Yii Debugger"inurl:ManageFilters.jspa?filterView=popularhttps://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:composeinurl:calendar.google.com/calendar/embed?src=inurl:log -intext:log ext:log inurl:wp-inurl:wp-content/debug.loginurl:DiGIR.phpfiletype:sql intext:wp_users phpmyadmin"Index of /wp-content/uploads/backupbuddy_backups" zipintext:"/LM/W3SVC/" ext:aspintext:"/showme.asp" HTTP_ACCEPTfiletype:txt "gmail" | "hotmail" | "yahoo" -robots site:gov | site:usinurl:vidyo -site:vidyo.com inurl:portalindex of /wp-content/uploads/userproinurl:configfile.cgisite:github.com filetype:md | filetype:js | filetype:txt "xoxp-"filetype:pdf intitle:"SSL Report"intitle:"Skipfish . scan"filetype:rcf inurl:vpninurl:"sugarcrm.log" ext:log -git -googleintitle:"TurnKey LAMP" intext:"turnkey lamp release notes" "Apache PHP information"inurl:haproxy-status site:example.comintext:"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 taxreturninurl:"trace" ext:axd intext:"password"-inurl:http | -inurl:https inurl:ftp ext:xls | ext:xlsx bankintitle:Tomcat Status | inurl:/status?full=truesite: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:iniinurl:xampp inurl:perlinfo.pl ext:plsite:.edu | .gov ext:bkf | ext:bkp | ext:bak | ext:old | ext:backupinurl:src/viewcvs.cgi/log/.c?=inurl: mil|/issue.php filetype:xlsfiletype: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:phpinurl:wp-admin/admin-ajax.php inurl:wp-config.phpinurl:access.cnf ext:cnfintext:OLD_FOREIGN_KEY_CHECKS"; = ext:txt"Futon on Apache" inurl:_utilsphpMyAdmin SQL Dump"signons.sqlite" intitle:"index of"intitle:"Index of" "mail" "Inbox" "Sent"filetype:pcf vpn OR Groupintitle:"index of" "fic" "ndx"inurl:/dbg-wizard.phpintitle:"index of" "archive.pst" -contribfiletype:pub inurl:sshintext:JSESSIONID OR intext:PHPSESSID inurl:access.log ext:logintitle:index of /weekly cpbackupfiletype:xml inurl:/WEB-INF/ inurl:ftp:// -wwwinurl:"/server-info" intext:"Loaded Modules"inurl:"installer-log.txt" intext:"DUPLICATOR INSTALL-LOG"ext:pem intext:BEGIN CERTIFICATEext:log telnet intext:passwordfiletype:mobileconfig intext:password OR intext:passext:txt inurl:gov intext:"Content-Type: text/plain; charset=utf-8" AND intext:"Received: from "ext:msg OR ext:eml site:gov OR site:edufiletype:log intext:org.apache.hadoop.hdfsintext: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:pdffiletype:sql site:com and "insert into" admin "2014"filetype:sql site:gov and "insert into"("DMZ" | "Public IP" | "Private IP") filetype:xlsfiletype:pdf "acunetix website audit" "alerts summary"inurl:crossdomain filetype:xml intext:allow-access-frominurl:clientaccesspolicy filetype:xml intext:allow-fromsite:bitbucket.org inurl:.bash_historyinurl:mikrotik filetype:backupintext:phpMyAdmin SQL Dump filetype:sql intext:INSERT INTO `admin` (`id`, `user`, `password`) VALUES -githubinurl:github.com intext:sftp-conf.json +intext:/wp-content/inurl:config "fetch = +refs/heads/*:refs/remotes/origin/*"inurl:/wp-content/uploads/ filetype:sqlfiletype:bak (inurl:php | inurl:asp | inurl:rb)inurl:"jmx-console/HtmlAdaptor" intitle:Mbeansite:github.com inurl:"known_hosts" "ssh-rsa"site:github.com inurl:"id_rsa" -inurl:"pub"filetype:xml inurl:sitemapinurl:tar filetype:gzfiletype:php intext:"PROJECT HONEY POT ADDRESS DISTRIBUTION SCRIPT"inurl:*/webalizer/* intitle:"Usage Statistics"intitle:index.of intext:.sshfiletype:txt inurl:~~Wordpress2.txtfiletype:txt inurl:wp-config.txtinurl:fluidgalleries/dat/login.dat"information_schema" filetype:sqlinurl:~~joomla3.txt filetype:txtintitle:"WAMPSERVER Homepage" & intext:"Server Configuration"inurl:wp-content/uploads/dump.sqlinurl:"zendesk.com/attachments/token" site:zendesk.comallintext: /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:gnucashinurl:admin intext:username= AND email= AND password= OR pass= filetype:xlsinurl:newsnab/www/ automated.config.phpinurl:.com/configuration.php-distinurl:"phpmyadmin/index.php" intext:"[ Edit ] [ Create PHP Code ] [ Refresh ]"filetype:avastlicfiletype:docx Domain Registrar $user $passintext:"~~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:xlsList of Phone Numbers (In XLS File ) allinurl:telefonos filetype:xlsMicrosoft-IIS/7.0 intitle:index.of name sizeGoogle 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.zipinurl:"/includes/config.php"filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS+intext:"AWSTATS DATA FILE" filetype:txtfiletype:ini "Bootstrap.php" (pass|passwd|password|pwd)inurl:server-info intitle:"Server Information" Apache Server Informationfiletype: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 docsite:stashbox.org cv Or resume OR curriculum vitae filetype:pdf OR docinurl:/push/ .pem apns -"push notifications" "bag attributes"site:dl.dropbox.com filetype:pdf cv OR curriculum vitae OR resumeinurl:sarg inurl:siteuser.htmlfiletype:xls + password + inurl:.comallinurl:http://www.google.co.in/latitude/apps/badge/api?user=intext:db_pass inurl:settings.iniinurl:app/etc/local.xmlallinurl:/xampp/security.phpinurl:phpinfo.phpinurl:configuration.php-distinurl:"config.php.new" +vbulletinfiletype: 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" -inurlintitle:"AppServ Open Project *" "AppServ is a merging open source software installer package" -phpbbintitle:"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 -.milintext:ViewCVS inurl:Settings.phpinurl:build.errinurl:/cgi-bin/pass.txt(intitle:WebStatistica inurl:main.php) | (intitle:"WebSTATISTICA server") -inurl:statsoft -inurl:statsoftsa -inurl:statsoftinc.com -edu -software -robinurl: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 "Bookmarksintitle:"urchin (5|3|admin)" ext:cgirdbqds -site:.edu -site:.mil -site:.govcontacts ext:wmlintitle:"admin panel" +"Powered by RedKernel"intitle:"curriculum vitae" filetype:docext:(doc | pdf | xls | txt | ps | rtf | odt | sxw | psw | ppt | pps | xml) (intext:confidential salary | intext:"budget approved") inurl:confidentialsite:www.mailinator.com inurl:ShowMail.doallinurl:cdkey.txtfiletype:PS psfiletype:QBW qbwinurl:XcCDONTS.aspext:CDX CDXext:jbf jbfext:ccm ccm -catacombext:DCA DCAext:DBF DBFext:plist filetype:plist inurl:bookmarks.plistext:ics ics"MacHTTP" filetype:log inurl:machttp.logallinurl:"weblog/referrers"inurl:getmsg.html intitle:hotmail#VALUE!"#mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3filetype:ora tnsnames-site:php.net -"The PHP Group" inurl:source inurl:url ext:pHpintitle:"web server status" SSH Telnetinurl:netscape.hstext:reg "username=*" puttyinurl:"bookmark.htm"inurl:netscape.hstintitle:"edna:streaming mp3 server" -forumsinurl:netscape.iniext:txt inurl:dxdiagintitle:"FTP root at"filetype:ctt "msn"filetype:ctt Contactintext:gmail invite intext:http://gmail.google.com/gmail/aintitle:"index.of" .diz .nfo last modifiedfiletype:blt "buddylist"filetype:cnf inurl:_vti_pvt access.cnfext:conf inurl:rsyncd.conf -cvs -maninurl:preferences.ini "[emule]"intitle:"welcome.to.squeezebox"inurl:ds.pyext:dat bpk.datphp-addressbook "This is the addressbook for *" -warning"Generated by phpSystem"intitle:"Multimon UPS status page"inurl:"/axs/ax-admin.pl" -scriptext:gho ghoext:pqi pqi -databaseext:vmdk vmdkext:vmx vmxintitle:"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:logintitle:"Apache::Status" (inurl:server-status | inurl:status.html | inurl:apache.html)inurl:report "EVEREST Home Edition "intitle:phpinfo "PHP Version"filetype:myd myd -CVSintitle:"PhpMyExplorer" inurl:"index.php" -cvsext:cgi inurl:editcgi.cgi inurl:file=filetype:config web.config -CVSfiletype:ns1 ns1filetype:pst pst -from -to -dateext:conf NoCatAuth -cvsinurl:"putty.reg"filetype:inf inurl:capolicy.inf"Certificate Practice Statement" inurl:(PDF | DOC)intitle:"AppServ Open Project" -site:www.appservnetwork.comintitle:"Web Server Statistics for ****"filetype:php inurl:index inurl:phpicalendar -site:sourceforge.netintitle:"Index of" upload size parent directoryext:nsf nsf -gov -milinurl:log.nsf -govintitle:"index.of *" admin news.asp configview.aspinurl:cgi-bin/testcgi.exe "Please distribute TestCGI"ext:mdb inurl:*.mdb inurl:fpdb shop.mdbintitle:"ASP Stats Generator *.*" "ASP Stats Generator" "2003-2004 weppos"ext:ini intext:env.ini"Installed Objects Scanner" inurl:default.aspinurl:odbc.ini ext:ini -cvsintext:SQLiteManager inurl:main.php+":8080" +":3128" +":80" filetype:txtinurl:/_layouts/settingsext:ldif ldiffiletype:vcs vcsext: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.potfiletype:xls inurl:"email.xls"filetype:reg "Terminal Server Client"inurl:snitz_forums_2000.mdbfiletype:rdp rdpfiletype:qbb qbbfiletype:bkf bkf( filetype:mail | filetype:eml | filetype:mbox | filetype:mbx ) intext:password|subjectfiletype:QDF QDF"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"ext:asp inurl:pathto.aspmail filetype:csv -site:gov intext:namefiletype:xls -site:gov inurl:contactintext:"Session Start * * * *:*:* *" filetype:log(inurl:"robot.txt" | inurl:"robots.txt" ) intext:disallow filetype:txtfiletype:fp3 fp3filetype:fp7 fp7filetype:cfg auto_inst.cfgfiletype:fp5 fp5 -site:gov -site:mil -"cvs log""allow_call_time_pass_reference" "PATH_INFO"inurl:*db filetype:mdbfiletype:ora oraintitle:"Index Of" -inurl:maillog maillog sizeinurl:email filetype:mdbdata filetype:mdb -site:gov -site:milintitle:"Index Of" cookies.txt "size"inurl:backup filetype:mdbinurl:forum filetype:mdbintext:(password | passcode) intext:(username | userid | user) filetype:csvinurl:profiles filetype:mdbintitle:"index of" +myd size"sets mode: +p""sets mode: +s"inurl:ssl.conf filetype:confe-mail address filetype:csv csvBEGIN (CERTIFICATE|DSA|RSA) filetype:csrBEGIN (CERTIFICATE|DSA|RSA) filetype:key"# Dumping data for table (username|user|users|password)"filetype:conf inurl:unrealircd.conf -cvs -gentoointitle:"Welcome to ntop!"filetype:mny mnyinurl:/public/?Cmd=contentsfiletype:ctt ctt messenger94FBR "ADOBE PHOTOSHOP"inurl:forward filetype:forward -cvsinurl:"cacti" +inurl:"graph_view.php" +"Settings Tree View" -cvs -RPMinurl:"/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:iniintitle:intranet inurl:intranet +intext:"phone"filetype:blt blt +intext:screennamefiletype:log cron.logfiletype:log access.log -CVSfiletype:lic lic intext:keyintitle:"index of" mysql.conf OR mysql_configfiletype:eml eml +intext:"Subject" +intext:"From"filetype:mbx mbx intext:Subjectfiletype:wab wab"Request Details" "Control Tree" "Server Variables""HTTP_FROM=googlebot" googlebot.com "Server_Software="filetype:conf inurl:firewall -intitle:cvsinurl:"smb.conf" intext:"workgroup" filetype:confinurl:tdbinintext:"Tobias Oetiker" "traffic analysis"inurl:cgi-bin/printenvinurl:perl/printenvinurl:server-info "Apache Server Information"inurl:fcgi-bin/echoinurl:server-status "apache""Running in Child mode""This is a Shareaza Node"allinurl:servlet/SnoopServletallinurl:/examples/jsp/snp/snoop.jspinurl:"newsletter/admin/"inurl:"newsletter/admin/" intitle:"newsletter admin""Index of" / "chat/logs"inurl:vbstats.php "page generated""#mysql dump" filetype:sqlintitle:index.of inbox dbxintitle:index.of inbox dbxintitle:index.of inbox"Network Vulnerability Assessment Report""Host Vulnerability Summary Report""not for distribution" confidential"Thank you for your order" +receiptinurl:changepassword.asp"Most Submitted Forms and Scripts" "this section"inurl:admin filetype:xlsinurl:admin intitle:loginintitle:admin intitle:logininurl: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:txtinurl:ipsec.secrets "holds shared secrets"intitle:"statistics of" "advanced web statistics"inurl:main.php Welcome to phpMyAdminintitle:"wbem" compaq login "Compaq Information Technologies Group"intitle:index.of "Apache" "server at"intitle:index.of dead.letterintitle:index.of ws_ftp.iniinurl:cgiirc.configintitle:index.of cgiirc.config"# phpMyAdmin MySQL-Dump" "INSERT INTO" -"the""# phpMyAdmin MySQL-Dump" filetype:txtinurl:ipsec.conf -intitle:manpageintitle:index.of mystuff.xmlsite:edu admin gradesfiletype: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.bltintitle:index.of finances.xlsintitle:"Ganglia" "Cluster Report for"intitle:index.of mt-db-pass.cgi"# Dumping data for table"intitle:"Index of" dbconvert.exe chatsintitle:"Index of" finance.xls |
内容来源网络,仅供学习研究,请勿用于非法,否则后果自负!
Hackyh'Blog版权声明:以上内容作者已申请原创保护,未经允许不得转载,侵权必究!授权事宜、对本内容有异议或投诉,敬请联系网站管理员,我们将尽快回复您,谢谢合作!


