Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created April 2, 2020 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/c83e83f19ebd63e87e7842afa92c48c6 to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/c83e83f19ebd63e87e7842afa92c48c6 to your computer and use it in GitHub Desktop.
How to install WAScan on Ubuntu 18.04 LTS
# Youtube: https://www.youtube.com/watch?v=tyglvs1pbLs
# !/bin/sh
# To install wascan use the following commands:
git clone https://github.com/m4ll0k/WAScan.git wascan
cd wascan
sudo apt install python3-pip
pip install BeautifulSoup
python wascan.py
# To use fingerprint following commands should be used:
python wascan.py --url http://xxxxx.com/ --scan 0
# To use attack following commands should be used:
python wascan.py --url http://xxxxx.com/index.php?id=1 --scan 1
# To use audit following commands should be used:
python wascan.py --url http://xxxxx.com/ --scan 2
# To use Bruteforce following commands should be used:
python wascan.py --url http://xxxxx.com/ --scan 3
# To use disclosure following commands should be used:
python wascan.py --url http://xxxxx.com/ --scan 4
# To use fullscan following commands should be used:
python wascan.py --url http://xxxxx.com --scan 5
# To use Bruteforce Hidden Parameters following commands should be used:
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