Created
February 12, 2020 18:03
-
-
Save rakibulinux/ec0b66e08c0c6e0727f3d712f4fb11ec to your computer and use it in GitHub Desktop.
Installing Metasploit 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/bash | |
| sudo apt update | |
| sudo apt upgrade | |
| #Download Metasploit Combined Installer | |
| wget https://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run | |
| chmod +x metasploit-latest-linux-x64-installer.run | |
| sudo ./metasploit-latest-linux-x64-installer.run | |
| #Visit with Domain and Port: | |
| https://localhost:3790/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment