If you like any Car and Want to Buy please Call us 24/7

0344-2668711

Want to sale a Car: CLICK HERE

Pagodo - Automate Google Hacking Database Scraping And Searching


The goal of this project was to develop a passive Google dork script to collect potentially vulnerable web pages and applications on the Internet. There are 2 parts. The first is ghdb_scraper.py that retrieves Google Dorks and the second portion is pagodo.py that leverages the information gathered by ghdb_scraper.py.

What are Google Dorks?
The awesome folks at Offensive Security maintain the Google Hacking Database (GHDB) found here: https://www.exploit-db.com/google-hacking-database. It is a collection of Google searches, called dorks, that can be used to find potentially vulnerable boxes or other juicy info that is picked up by Google's search bots.

Installation
Scripts are written for Python 3.6+. Clone the git repository and install the requirements.
git clone https://github.com/opsdisk/pagodo.git
cd pagodo
virtualenv -p python3 .venv # If using a virtual environment.
source .venv/bin/activate # If using a virtual environment.
pip install -r requirements.txt

Google is blocking me!
If you start getting HTTP 503 errors, Google has rightfully detected you as a bot and will block your IP for a set period of time. The solution is to use proxychains and a bank of proxies to round robin the lookups.
Install proxychains4
apt install proxychains4 -y
Edit the /etc/proxychains4.conf configuration file to round robin the look ups through different proxy servers. In the example below, 2 different dynamic socks proxies have been set up with different local listening ports (9050 and 9051). Don't know how to utilize SSH and dynamic socks proxies? Do yourself a favor and pick up a copy of The Cyber Plumber's Handbook to learn all about Secure Shell (SSH) tunneling, port redirection, and bending traffic like a boss.
vim /etc/proxychains4.conf
round_robin
chain_len = 1
proxy_dns
remote_dns_subnet 224
tcp_read_time_out 15000
tcp_connect_time_out 8000
[ProxyList]
socks4 127.0.0.1 9050
socks4 127.0.0.1 9051
Throw proxychains4 in front of the Python script and each lookup will go through a different proxy (and thus source from a different IP). You could even tune down the -e delay time because you will be leveraging different proxy boxes.
proxychains4 python3 pagodo.py -g ALL_dorks.txt -s -e 17.0 -l 700 -j 1.1

ghdb_scraper.py
To start off, pagodo.py needs a list of all the current Google dorks. A datetimestamped file with the Google dorks and the indididual dork category dorks are also provided in the repo. Fortunately, the entire database can be pulled back with 1 GET request using ghdb_scraper.py. You can dump all dorks to a file, the individual dork categories to separate dork files, or the entire json blob if you want more contextual data about the dork.
To retrieve all dorks
python3 ghdb_scraper.py -j -s
To retrieve all dorks and write them to individual categories:
python3 ghdb_scraper.py -i
Dork categories:
categories = {      1: "Footholds",      2: "File Containing Usernames",      3: "Sensitives Directories",      4: "Web Server Detection",      5: "Vulnerable Files",      6: "Vulnerable Servers",      7: "Error Messages",      8: "File Containing Juicy Info",      9: "File Containing Passwords",      10: "Sensitive Online Shopping Info",      11: "Network or Vulnerability Data",      12: "Pages Containing Login Portals",      13: "Various Online devices",      14: "Advisories and Vulnerabilities",  }  

pagodo.py
Now that a file with the most recent Google dorks exists, it can be fed into pagodo.py using the -g switch to start collecting potentially vulnerable public applications. pagodo.py leverages the google python library to search Google for sites with the Google dork, such as:
intitle:"ListMail Login" admin -demo  
The -d switch can be used to specify a domain and functions as the Google search operator:
site:example.com  
Performing ~4600 search requests to Google as fast as possible will simply not work. Google will rightfully detect it as a bot and block your IP for a set period of time. In order to make the search queries appear more human, a couple of enhancements have been made. A pull request was made and accepted by the maintainer of the Python google module to allow for User-Agent randomization in the Google search queries. This feature is available in 1.9.3 and allows you to randomize the different user agents used for each search. This emulates the different browsers used in a large corporate environment.
The second enhancement focuses on randomizing the time between search queries. A minimum delay is specified using the -e option and a jitter factor is used to add time on to the minimum delay number. A list of 50 jitter times is created and one is randomly appended to the minimum delay time for each Google dork search.
categories = {
1: "Footholds",
2: "File Containing Usernames",
3: "Sensitives Directories",
4: "Web Server Detection",
5: "Vulnerable Files",
6: "Vulnerable Servers",
7: "Error Messages",
8: "File Containing Juicy Info",
9: "File Containing Passwords",
10: "Sensitive Online Shopping Info",
11: "Network or Vulnerability Data",
12: "Pages Containing Login Portals",
13: "Various Online devices",
14: "Advisories and Vulnerabilities",
}
Latter in the script, a random time is selected from the jitter array and added to the delay.
intitle:"ListMail Login" admin -demo
Experiment with the values, but the defaults successfully worked without Google blocking my IP. Note that it could take a few days (3 on average) to run so be sure you have the time.
To run it:
site:example.com

Conclusion
Comments, suggestions, and improvements are always welcome. Be sure to follow @opsdisk on Twitter for the latest updates.




via KitPloit

Related news


  1. Github Hacking Tools
  2. Growth Hacker Tools
  3. Hacker Tools Mac
  4. Pentest Tools For Ubuntu
  5. Pentest Tools Website Vulnerability
  6. Hack And Tools
  7. Hacker Security Tools
  8. Pentest Tools Online
  9. Hacker Tools 2019
  10. Usb Pentest Tools
  11. Computer Hacker
  12. Pentest Tools Framework
  13. Hacker Security Tools
  14. Hacker Tools Windows
  15. Hacker Tools Github
  16. Pentest Recon Tools
  17. Termux Hacking Tools 2019
  18. Hacking Tools Download
  19. Hackrf Tools
  20. Termux Hacking Tools 2019
  21. Pentest Tools Website Vulnerability
  22. Hacking Tools Mac
  23. Hacking Tools Windows
  24. Tools Used For Hacking
  25. Hack Tools For Mac
  26. Pentest Tools For Ubuntu
  27. Hacker Tools Mac
  28. Hack Tools For Games
  29. What Are Hacking Tools
  30. Hack App
  31. Hacking Tools For Pc
  32. Hacking Tools Pc
  33. Hacker Tools Mac
  34. Android Hack Tools Github
  35. Growth Hacker Tools
  36. Hacking Tools
  37. New Hacker Tools
  38. Termux Hacking Tools 2019
  39. Install Pentest Tools Ubuntu
  40. Pentest Tools Framework
  41. Game Hacking
  42. Hacking Tools Windows
  43. Hacking Tools Software
  44. Pentest Tools Alternative
  45. Pentest Reporting Tools
  46. Pentest Tools Port Scanner
  47. How To Install Pentest Tools In Ubuntu
  48. New Hacker Tools
  49. Pentest Tools Website
  50. Pentest Tools Alternative
  51. Pentest Tools Github
  52. Hack Rom Tools
  53. Hacker Tools Software
  54. Underground Hacker Sites
  55. Hacking Tools
  56. Pentest Box Tools Download
  57. Hacking Tools Free Download
  58. Pentest Tools
  59. Hacker Search Tools
  60. Hacking Tools For Kali Linux
  61. Hacking Tools For Games
  62. Hacker Tools For Ios
  63. Nsa Hack Tools Download
  64. Pentest Tools Linux
  65. Hacking Tools And Software
  66. Beginner Hacker Tools
  67. Pentest Tools For Windows
  68. Tools For Hacker
  69. Hacker Tools For Windows
  70. Hacks And Tools
  71. Hack Tools 2019
  72. Hacker Tools Free Download
  73. Pentest Reporting Tools
  74. Best Hacking Tools 2020
  75. Hacking Tools Kit
  76. Hack Tools For Games
  77. How To Make Hacking Tools
  78. Usb Pentest Tools
  79. Hacking Tools For Windows 7
  80. Hacker Tools For Pc
  81. Pentest Box Tools Download
  82. Pentest Tools Url Fuzzer
  83. Hack Tools For Games
  84. Pentest Tools For Mac
  85. Hacker Tools For Mac
  86. Hacking Tools For Games
  87. Pentest Recon Tools
  88. Hacker Tools Github
  89. Hacker Tools Apk Download
  90. Hacker Tools Linux
  91. Hacking Tools Free Download
  92. Hack Tools Download
  93. Pentest Tools Apk
  94. Hacker Tools Linux
  95. Hacker Tools For Mac
  96. Hacker Tools For Windows
  97. Pentest Box Tools Download
  98. Hacker Tools 2019
  99. Hack Tool Apk No Root
  100. What Are Hacking Tools
  101. Hacker Tools Free Download
  102. Hacking Tools Name
  103. Hacking Tools For Pc
  104. Hack Tools Mac
  105. Hacking Tools
  106. Nsa Hacker Tools
  107. Hacking Tools For Windows
  108. Ethical Hacker Tools
  109. Pentest Tools For Mac
  110. Easy Hack Tools
  111. Hacking Tools 2020
  112. Pentest Tools Tcp Port Scanner
  113. Hacking Tools Github
  114. Pentest Tools Bluekeep
  115. Tools 4 Hack
  116. Hack Tools
  117. How To Hack
  118. Tools 4 Hack
  119. Nsa Hacker Tools
  120. Pentest Tools For Mac

0 comments:

Post a Comment