Sponsored
Exploiting Tools

ParamSpider : Vulnerable XSS, IDOR, SSRF Parameter Finder

Hey folks, today we are going to talk about an interesting tool called β€œParamSpiderβ€œ. It is extremely designed for scrap the vulnerable parameter from the web application that can be helpful during the penetration testing.

Key Features

  • Finds parameters from subdomains as well.
  • Finds parameters from web archives of the entered domain.
  • Saves the output result in a nice and clean manner.
  • Gives support to exclude urls with specific extensions.
  • It mines the parameters from web archives (without interacting with the target host)

Lets do it πŸ™‚ !!

Installation

First we need to download this tool from the github page which is pretty simple, just execute the following git command and tool will be download on terminal.

git clone https://github.com/devanshbatham/ParamSpider

Go into the directory by cd command.

cd ParamSpider

Before start this tool we need to fulfill some requirements of this tool.

pip3 install -r requirements.txt

Simple Scan

Now first we will take an example without adding the filter. Through this command we will try to find all parameters in which some can be harmful or non-harmful parameters.
Usage πŸ™‚ pythin3 paramspider.py –domain < site URL >

python3 paramspider.py --domain secnhack.in

Exclude

Now we will use the exclude function of this tool to improve our results.

python3 paramspider.py --domain secnhack.in --exclude php,jpg,svg

Nested

Now we will find only the nested parameter by uses the following command.

python3 paramspider.py --domain secnhack.in --level high

Output

We will save our results in txt file.

python3 paramspider.py --domain secnhack.in --output results.txt

Exclude subdomains

If we do not want this tool to scan the subdomain then we can use the deprecated function of this tool.

python3 paramspider.py --domain secnhack.in --subs False

Similarly, you can find unsafe parameters using this tool and after that you can start fuzzing to detect the vulnerability in the web application.

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.