How to Install Nmap on Ubuntu (2026 Guide)

0
486

Nmap (Network Mapper) is a powerful open-source network scanning tool used for host discovery, port scanning, service detection, and basic vulnerability assessment.

It is widely used in:

  • Security testing
  • Network auditing
  • Bug bounty reconnaissance
  • Lab environments

This guide shows how to install and use Nmap on Ubuntu.


Update Your System

sudo apt update
sudo apt upgrade -y

Install Nmap

Install directly from Ubuntu repositories:

sudo apt install nmap -y

Verify installation:

nmap --version

If installed correctly, the version information will be displayed.


Basic Usage

Scan a single host:

nmap 192.168.1.10

Scan a website:

nmap example.com

Scan Specific Ports

nmap -p 80,443 192.168.1.10

Scan a port range:

nmap -p 1-1000 192.168.1.10

Service Version Detection

nmap -sV 192.168.1.10

This attempts to detect service versions running on open ports.


OS Detection

nmap -O 192.168.1.10

Requires root privileges:

sudo nmap -O 192.168.1.10

Aggressive Scan

sudo nmap -A 192.168.1.10

This enables:

  • OS detection
  • Version detection
  • Script scanning
  • Traceroute

Scan an Entire Subnet

nmap 192.168.1.0/24

Using Nmap Scripts (NSE)

List available scripts:

ls /usr/share/nmap/scripts/

Run default scripts:

sudo nmap -sC 192.168.1.10

Run a specific script:

sudo nmap --script http-title 192.168.1.10



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

Поиск
Категории
Больше
Tech
Zero Trust Architecture: Essential Cloud Security for 2026
Why Zero Trust is Critical in 2026 Traditional perimeter-based security models have become...
От techhub 2026-02-27 13:15:48 0 730
Tech
How to Change Virtual Desktops in Windows 11
Virtual desktops in Windows 11 let you organize your work by separating apps into different...
От techhub 2026-02-27 13:15:42 0 507
Tech
Amazon Fire TV Blocks Sideloaded Apps in 2026: What You Need to Know
Amazon has started blocking the installation of certain sideloaded applications on Fire TV...
От techhub 2026-02-27 13:15:45 0 512
Tech
Windows 11: How to Change Your Refresh Rate
Open Settings → System → Display. Click Advanced Display. Select refresh rate...
От Luckyy 2025-11-23 21:55:18 0 896
Tech
Why Big Social Media Feels Fake Now
Not long ago, social media felt personal. You followed people you knew, saw posts in real time,...
От Luckyy 2026-01-02 18:23:16 0 2Кб