Open In App

Packer-Fuzzer – Fast And Efficient Scanner For Security Detection Of Websites

Last Updated : 07 Feb, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Packer-Fuzzer is a scanning tool for fast and efficient security detection of websites constructed by front-end packaging tools such as Webpack. This tool is developed in the Python Language and is available on the GitHub platform for free. It’s an open-source tool so you can also contribute to it. It supports the fuzzing and efficient fuzzing of seven vulnerabilities: unauthorized access, sensitive information leakage, CORS, SQL injection, unauthorized access, weak password, and arbitrary file upload Rapid detection.

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

Installation of Packer-Fuzzer Tool on Kali Linux OS

Step 1: Use the following command to install the tool in your Kali Linux operating system.

git clone https://github.com/rtcatc/Packer-Fuzzer.git

Step 2: Now use the following command to move into the directory of the tool. You have to move in the directory in order to run the tool.

cd Packer-Fuzzer

Step 3: You are in the directory of the Packer-Fuzzer tool. Now you have to install a dependency of the Silver using the following command.

sudo pip3 install -r requirements.txt

Step 4: All the dependencies have been installed in your Kali Linux operating system. Now use the following command to run the tool and check the help section.

python3 PackerFuzzer.py  –help

Working with Packer-Fuzzer Tool on Kali Linux OS

Example/Usage: Scanning geeksforgeeks.org target domain

python3 PackerFuzzer.py -u http://geeksforgeeks.org

In this example, we are scanning the target domain http://geeksforgeeks.org.

The tool has extracted all the js files which are present on the domain server.

After all the scans, a detailed report is been generated.

We have opened the detailed report which consists of JS information, API List, and other important information.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads