Sponsored
Others

Dork Scanner – A Vulnerable URLs Finder

Hey Folks, in this tutorial we will show you how we can find vulnerable URLs through the dork scanner command line tool.

Dork Scanner – Github Tools

If you know about the google dork then you will easily understands. Dork scanning tool built in python and It scrapes web search engines with dorks you provide in order to find vulnerable urls. This is tool is especially designed to find security holes in the server configuration. It is a (CLI) based tool and google (GUI) based tool which is the main difference between the two.

Lets take a look 🙂 !!

Installation

As you know, we have to download it first form the github page.

git clone https://github.com/GuestGuri/dork-scanner.git

After downloading, the directory will be created on the terminal that we need to access.

cd dork-scanner

Now we have to fulfill some requirements of this tool for which we will using python and pip tool.

python3 -m pip install -r requiremets.txt

Now we can use this tool by execute the following command.

python3 dork-scanner.py --help

Example -1

In our first attempt, we will try to get websites that have this vulnerable plugin. Due to which we will not have to put more efforts and we will find the more vulnerable website in single search that is advantage of dork.

  • page = Number of pages to search in
  • process = Number of parallel processes
  • gddb = inurl:wp-content/plugins/wp-jobsearch
python3 dork-scanner.py --search inurl:wp-content/plugins/wp-jobsearch --engine google --page 3 --process 3

Example -2

In the second attempt we will try to get the hidden password directory from the websites which may be useful to the attacker and this vulnerability as a security checker.

  • gddb = inurl:”index.php/user/password/
python3 dork-scanner.py --search inurl:"index.php/user/password/" --engine google --page 3 --process 3

Example -3

We will take another and last example and try to obtain the “.env” file into the websites. As we know that env files allow to put the environment variables inside a file. If the file is accessible then the attacker can exploit that website.

  • gddb = filetype:env “DB_PASSWORD”
python3 dork-scanner.py --search "filetype:env "DB_PASSWORD"" --engine google --page 3 --process 3

Therefore we uses Google dork to get valuable and accurate results.
Q = But the question is, where do we get Google dork?
A = For this you can use exploitdb website.

About the Author
Shubham Goyal Certified Ethical Hacker, information security analyst, penetration tester and researcher. Can be Contact on Linkedin.
Sponsored

Recent Posts

Termux Cheat Sheet for Hackers

Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…

1 month ago

Cracking the X-Factor in Cybersecurity: How Humans are Protecting the Systems?

Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…

8 months ago

Cariddi – Hidden Endpoint Finder for Bug Hunting

Hey Folks, we are back today after such a long break, but don't worry we…

2 years ago

API Security Testing 101: Know Everything About API Security Testing!

The security of your API should be one of the top priorities of companies. Without…

2 years ago

7 Best Tools for Web Penetration Testing: Comprehensive Details

Hey Folks, In today's business world, it is essential to have an online presence. However,…

2 years ago

Cyber Security Audits: Everything You Need to Know About It

Hey Folks, Is your business prepared in case of a cyber attack? Many companies don't…

2 years ago
Sponsored

This website uses cookies.