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
Shubham Goyal

A keen learner and passionate IT student. He has done Web designing, CCNA, RedHat, Ethical hacking, Network & web penetration testing. Currently, he is completing his graduation and learning about Red teaming, CTF challenges & Blue teaming.

Recent Posts

Gau (GetAllUrls) – Find Known and Hidden URL

The gau (Get All URLs) tool is a versatile open-source utility that collects URLs from…

4 months ago

Jsluicepp – Burp Extension for JS Secrets – BugBountyTip

Jsluice++ is a Burp Suite extension designed for passive and active scanning of JavaScript traffic…

9 months ago

Bypassing Firewalls (WAF) with XSS Payloads

Hey Folks :) !! In this tutorial, we will describe some of the techniques commonly…

9 months ago

Termux Cheat Sheet for Hackers

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

1 year 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…

2 years ago

Cariddi – Hidden Endpoint Finder for Bug Hunting

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

3 years ago
Sponsored

This website uses cookies.