๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

๐ŸŒ Networking April 21, 2026 11

Linux Command: nmap

Network exploration and security auditing โ€” port scanning and service detection

Terminal โ€” Networking
Command
$ nmap -sV -p 22,80,443 --open dargslan.com
Output
PORT STATE SERVICE VERSION 22/tcp open ssh OpenSSH 9.2p1 Debian 80/tcp open http nginx 1.24.0 443/tcp open ssl/http nginx 1.24.0

nmap is the de facto network scanner. -sV detects service versions, -sC runs default scripts, -A enables OS detection + traceroute. Always scan responsibly โ€” only against systems you own or have explicit permission to test.

Share this tip