Last active
June 10, 2020 08:59
-
-
Save CloudLinuxDeveloper/dac35e6d4bdfcc6b1ca546f2d5ebad99 to your computer and use it in GitHub Desktop.
How to install WAScan on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Systme update | |
sudo apt update && sudo apt upgrade | |
# Install wascan- use following commands: | |
git clone https://github.com/m4ll0k/WAScan.git wascan | |
cd wascan | |
sudo apt install python3-pip | |
sudo apt install python-pip | |
pip install python BeautifulSoup4 | |
python wascan.py | |
# Fingerprint- use following command: | |
sudo python wascan.py --url http://xxxxx.com/ --scan 0 | |
sudo python wascan.py --url http://itstillworks.com/ --scan 0 | |
# Attack- use following command: | |
sudo python wascan.py --url http://xxxxx.com/index.php?id=1 --scan 1 | |
sudo python wascan.py --url http://schooloffreelancing.com/index.php?id=1 --scan 1 | |
# Audit- use following command: | |
sudo python wascan.py --url http://xxxxx.com/ --scan 2 | |
sudo python wascan.py --url http://schooloffreelancing.com/ --scan 2 | |
# Bruteforce- use following commands: | |
sudo python wascan.py --url http://xxxxx.com/ --scan 3 | |
# Disclosure- use following command: | |
sudo python wascan.py --url http://xxxxx.com/ --scan 4 | |
# Fullscan- use following command: | |
sudo python wascan.py --url https://itstillworks.com --scan 5 | |
# For Bruteforce Hidden Parameters following command: | |
sudo python wascan.py --url http://xxxxx.com/test.php --brute |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment