WebScan is a web vulnerability scanner that scans web pages for SQL injection and XSS vulnerabilities, which is a great tool for web penetration testers. CLI.WebScan included with python3 is capable of scanning and detecting SQL injection vulnerabilities on HTTP and HTTP pages.
How does WebScan work?
Whereas Network Vulnerability Scanner scans the web server itself, including your operating system, the webserver daemon, and other open sources such as a database service running on the same system, Web Scan, or the web application scanner focuses on the application code.
Requirements
- Bs4
- Requests
- Termcolor
- Colorama
Tested Platform
- Parrot OS security
- Kali Linux 2021
- Ubuntu
- Lubuntu
- Slax Linux
- BlackArch Linux
How to download and install the webscan tool?
Step 1:
First, we need to download the web scan tool in your terminal so type the below command.
git clone https://github.com/TermuxHackz/WebScan.git
Step 2:
Now change the directory to the web scan folder so type the following command
cd WebScan
Step 3:
After that install the requirements of web scan tool so type the below command on your terminal.
pip install -r requirements.txt
Now Permit to read write and execute of webscan.py python file so execute the below string.
chmod +x webscan.py
Step 4:
After completing all the above steps, run the python webscan.py tool in your terminal, so run the following command.
python3 webscan.py
Now select the option you want, in my case I choose this option and write which site you want to check
Post a Comment