Sponsored
Exploiting Tools

SourceWolf – A CLI Web Crawler

Hey Folks, as we know that often we add sitemap in website to index the content of websites all across the Internet and simply crawlers take the “sitemap.xml” file from the web application and give us the result. But some crawlers are used to find hidden files or directories in web applications. Almost all web application crawlers work the same way and the one we are going to talk about today works like any other.

Lets take a look 🙂 !!

Installation

To configure this tool we have to download it from github. Execute the pipe command after going to the directory and install the requirements of this tool.

git clone https://github.com/micha3lb3n/SourceWolf.git
cd SourceWolf/
pip3 install -r requirements.txt

Ready 🙂 Nowwe can use this tool by using the following command.

python3 sourcewolf.py

Usage

Now first of all we add only URL parameters to our search and we get the following response from this tool which shows that URL is can be access.

python3 sourcewolf.py --url http://192.168.1.7/wp-admin

Bruteforce

Only through this technique we can obtain sensitive information, files and directory in web application such as robots.txt. The use of this tool is quite specific as you can see below that we add the FUZZ keyword after the URL which is required for fuzzing against a web application.

python3 sourcewolf.py -b http://192.168.1.7/FUZZ

The results will come with all response code because we have not added any extra parameters to the query.

Verbose

Verbose mode exists to visualize additional details as well as it give us the details of what the tool is doing.

python3 sourcewolf.py -b http://192.168.1.7/FUZZ -v

Wordlist

Most of the time we uses our own custom list to find the hidden files in web application and if you are find this feature in this tool then you see below.

python3 sourcewolf.py -b http://192.168.1.7/FUZZ -w wordlist.txt

Output

The Ouput option is not only available to save results, it also gives us additional features after complete the crawling.

python3 sourcewolf.py -b http://192.168.1.7/FUZZ -o ok

Below you can see that it also give us the juicy stuff from the source code.

As you can see it has successfully captured social media and JavaScript variables.

After going to the output directory, we can see the result as you can see below.

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.