Created
April 17, 2020 16:38
-
-
Save afahitech/d59abf62a6bd97e47bf5e8532b1544c8 to your computer and use it in GitHub Desktop.
How to install WAScan on Ubuntu 18.04 LTS
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 | |
| # Attack- use following command: | |
| sudo python wascan.py --url http://xxxxx.com/index.php?id=1 --scan 1 | |
| # Audit- use following command: | |
| sudo python wascan.py --url http://xxxxx.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 | |
| # Youtube https://youtu.be/HYR5VUuIKQQ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment