Working with Dork Scanner Tool on Kali Linux OS

Example 1: Query 1 = “inurl:wp-content/plugins/wp-jobsearch”

python3 dorkScanner.py –query inurl:wp-content/plugins/wp-jobsearch –engine google –page 3 –process 3

1. In this example, We will be performing Dorking for Job Search Portal on the internet, We have passed the query of dork through –query tag and we are searching results on the google search engine.

2. In the below Screenshot, We have got the results of our scan and this included only the job search-related results.

Example 2: Query 2 =  “inurl:”index.php/user/password/””

python3 dorkScanner.py –query inurl:”index.php/user/password/” –engine google –page 3 –process 3

1. In this Example, We are firing the query for detecting user and password files on the internet.

2. In the below Screenshot, We have got the results that contain the path of index.php/user/password/.

Example 3: Query 3 = “filetype:env “DB_PASSWORD””

python3 dorkScanner.py –query “filetype:env “DB_PASSWORD”” –engine google –page 3 –process 3

1. In this example, We are searching for the .env files on the internet.

2. In the below Screenshot, We have got the results that contain the .env files hosted on the server.



Dork Scanner – Vulnerable URLs Finder tool in Linux

Getting the relevant results for our search is challenging work on google or on the internet. Being a Technical person we need to perform some advanced search through which we can get relevant results for our search. So this advanced searching process is known as Dorking. We fire up an advanced query that returns results that are only relevant to our query. Dork Scanner is an automated tool developed in the python language which is beneficial for searching things on the internet. We simply have to provide the query and the results are displayed on the terminal itself. Although Dork Scanner is a CLI-based tool and Google is said to be GUI based tool for the Dorking process. Dork Scanner is an open-source and free-to-use tool. Dork Scanner supports various search engines like Google, Bing, etc. Dork Scanner allows users to set the limit of results to be retrieved.

Note: Make Sure You have Python Installed on your System, as this is a python-based tool. Click to check the Installation process: Python Installation Steps on Linux

Similar Reads

Installation of Dork Scanner Tool on Kali Linux OS

Step 1: Check whether Python Environment is Established or not, use the following command....

Working with Dork Scanner Tool on Kali Linux OS

Example 1: Query 1 = “inurl:wp-content/plugins/wp-jobsearch”...

Contact Us