How to Install Metasploit (msfconsole) on Ubuntu (2026 Guide)

0
458

Metasploit Framework is a powerful penetration testing framework used for vulnerability validation, exploit development, and lab-based security research. The main interface is msfconsole.

This guide shows the correct way to install Metasploit on Ubuntu using the official Rapid7 installer.


Update Your System

Start by updating your packages:

sudo apt update
sudo apt upgrade -y

Install Metasploit (Official Method – Recommended)

Download the official installer from Rapid7:

curl https://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run -o metasploit-installer.run

Make it executable:

chmod +x metasploit-installer.run

Run the installer:

sudo ./metasploit-installer.run

Follow the on-screen setup prompts.


Verify Installation

After installation completes, check the version:

msfconsole --version

Launch Metasploit:

msfconsole

You should see the Metasploit banner load successfully.


Initialize the Database (Recommended)

Metasploit uses PostgreSQL for storing scan results and workspace data.

Start PostgreSQL:

sudo systemctl start postgresql

Initialize the Metasploit database:

sudo msfdb init

Inside msfconsole, confirm connection:

db_status

It should show PostgreSQL connected.


Basic msfconsole Usage

Search for modules:

search wordpress

Select a module:

use exploit/unix/webapp/wp_admin_shell_upload

View options:

show options

Set required parameters:

set RHOSTS 192.168.1.10
set RPORT 80

Run the module:

exploit

Updating Metasploit

To update Metasploit:

sudo msfupdate

Or re-run the installer when a new release is available.



Read the full article: https://luckyy.uk/how-to-install-metasploit-msfconsole-on-ubuntu-2026-guide/

Search
Categories
Read More
Tech
How to Turn Off BitLocker in Windows 11
BitLocker is Windows’ built-in drive encryption feature. It protects your data if your laptop is...
By techhub 2026-02-27 13:15:42 0 483
Tech
How to Host Your Own AI (Free, Private, No Subscriptions)
You don’t need OpenAI, monthly fees, or cloud APIs to run powerful AI models anymore.With...
By Luckyy 2026-01-02 16:43:57 0 2K
Tech
Top PC Boost Tips for Windows 11 (Speed Up Your Computer)
Top 10 Best Windows 11 Speed Boost Tips (NO Upgrades, NO OC) 1. Disable Startup Programs (HUGE...
By Luckyy 2025-11-23 22:01:11 0 1K
Tech
Windows 11 Tutorial: A Complete Beginner’s Guide
Windows 11 is Microsoft’s modern, simplified, and visually polished operating system...
By Luckyy 2025-11-23 21:43:15 0 875
Tech
Nike Investigates Possible Cybersecurity Breach After Data Theft Claims
Nike has confirmed it is investigating a potential cybersecurity incident following claims by a...
By techhub 2026-02-27 13:15:46 0 694