This Section of this site will teach you how to Scan a site and tell if it is vulnerable to SQL injection or XSS (Cross Site Scripting attacks)
WebScan is a web vulnerability Scanning tool, which scans sites for SQL injection and XSS vulnerabilities Which is a great tool for web pentesters. Coded in python3, CLI. WebScan is capable of scanning and detecting sql injection vulnerabilities across HTTP and HTTP sites.
While a network vulnerability scanner scans the web server itself, including its operating system, the webserver daemon and the various other open sources, such as database services running on the same system, WebScan or web application scanner focuses on the code of the application
Installation of webscan is very easy and doesnt take much time all you need to do is to install necessary dependencies and start up webscan
cd $HOME
pkg update -y && pkg upgrade -y
sudo apt update -y && sudo apt upgrade -y
pkg install git -y
sudo apt install git -y
git clone https://github.com/TermuxHackz/WebScan.git
cd WebScan && chmod +x *
pip install -r requirements.txt
python3 webscan.py
I hope the installation of webscan has been understood, if you face errors during installation be sure to report them to me and i will help you fix them.