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

0
461

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/

البحث
الأقسام
إقرأ المزيد
Tech
TikTok Sees Reported 150% Spike in App Uninstalls Amid Privacy and Policy Concerns
TikTok has reportedly experienced a sharp increase in app uninstalls, with new data suggesting...
بواسطة techhub 2026-02-27 13:15:46 0 675
Tech
How to Delete Facebook Page Permanently (2026 Guide)
Step 1: Open Your Profile Menu Click your profile icon in the top-right corner of Facebook....
بواسطة techhub 2026-02-27 13:15:41 0 108
Tech
Under Armour Investigates Major Data Breach Affecting Millions of Customers
Clothing and athletic gear company Under Armour is investigating a significant data breach that...
بواسطة techhub 2026-02-27 13:15:46 0 609
Tech
AI Security Threats: What Every IT Professional Needs to Know in 2026
The Evolving AI Threat Landscape As artificial intelligence becomes increasingly integrated into...
بواسطة techhub 2026-02-27 13:15:48 0 562
Tech
How to Install Nmap on Ubuntu (2026 Guide)
Nmap (Network Mapper) is a powerful open-source network scanning tool used for host discovery,...
بواسطة techhub 2026-02-27 13:15:43 0 487