Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Last active May 3, 2020 13:52
Show Gist options
  • Save linuxbiekaisar/10af333ebc41f05078de1d564da12c10 to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/10af333ebc41f05078de1d564da12c10 to your computer and use it in GitHub Desktop.
How to install osmedeus in Ubuntu 20.04 LTS
# Youtube: https://www.youtube.com/watch?v=hx1ul3PPk3k&t=4s
# !/bin/sh
# 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