Working with Pagodo Tool on Kali Linux OS

Example 1: Using pagodo.py as a script

python3 pagodo.py -d w3wiki.org -g dorks/sensitive_directories.dorks 

In this example, We will be starting Google Dorking for finding the sensitive directories on the w3wiki.org domain.

Example 2: Using Another Dork File

python3 pagodo.py -d w3wiki.org -g dorks/all_google_dorks.txt 

In this example, We will be starting Google Dorking on the w3wiki.org domain.

Example 3: Setting Minimum delay (in seconds) between a Google dork search

python3 pagodo.py -d w3wiki.org -g dorks/advisories_and_vulnerabilities.dorks -i 38

In this example, We are Setting a Minimum delay (in seconds) between a Google dork search.


Pagodo – Automate Google Hacking Database Scraping And Searching

Google hacking, also named Google Dorking, is a hacker technique that uses Google Search and other Google applications to find security holes in the configuration and computer code that websites are using. Google Dorking could also be used for OSINT. This technique is also known as advanced searching, as in this the results retrieved are only relevant to the query fired as a request.

Example: Email lists

filetype:xls inurl:"email.xls" 

The above google Dorking query will find the email.xls file on the domain.

Similar Reads

What is Pagodo Tool?

Firing a single query all the time on google becomes difficult as this can take more time, so we can automate this Dorking task through automation tools....

Installation of Pagodo Tool on Kali Linux OS:

Step 1: Use the following command to install the tool in your Kali Linux operating system....

Working with Pagodo Tool on Kali Linux OS:

Example 1: Using pagodo.py as a script...