Created
February 7, 2021 12:55
-
-
Save kngvamxx/2091323344ec7623a2aa4c251251f89f to your computer and use it in GitHub Desktop.
how to install osmedeus
This file contains 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
# To install Osmedeus run the following command: | |
git clone https://github.com/j3ssie/Osmedeus | |
cd Osmedeus | |
./install.sh | |
# After installation use the following commands for different scanning system for a website: | |
# For Scanning subdomain and Subdomain TakeOver | |
./osmedeus.py -m subdomain -t example.com | |
# For Screenshot the target | |
./osmedeus.py -m portscan -t example.com | |
# For Port Scan and Vulnerable Scan on the target | |
./osmedeus.py -m portscan -t example.com | |
# For Vulnerable Scan on the target | |
./osmedeus.py -m vuln -t example.com | |
# For Doing directory search on the target | |
./osmedeus.py -m dir -t example.com | |
# ForDoing brute force on the service result from scanning service | |
./osmedeus.py -m brute -t example.com | |
# For Git repo scanning | |
./osmedeus.py -m git --git https://github.com/whatever/repo | |
# For Doing some stuff with Burp State file | |
./osmedeus.py -m burp -t example.com --burp yourburpstate.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment