Skip to main content

nmap

Use nmap for authorized, targeted port checks, lightweight service detection, and local network diagnostics at conservative rates.

Jump to install

Source facts

Repository
Aethena-Lab/Z3r0
Last source activity
September 3, 2026 at 10:00
Detected SKILL.md language
English
Stars
891
Forks
193

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
nmap
description
Use nmap for authorized, targeted port checks, lightweight service detection, and local network diagnostics at conservative rates.
# nmap Use `nmap` for bounded, authorized network reconnaissance. Keep scan scope explicit, targeted, and matched to the task. ## Help first Before constructing or explaining any `nmap` command, execute the installed CLI help command and use that raw output as the source of truth: ```sh nmap --help ``` ## Usage rules - Work only on explicitly authorized hosts, networks, or local diagnostics. - Keep scan scope, timing, ports, scripts, and output files explicit. - Default to one host and a short explicit port list. Broader host ranges or port sets require explicit user authorization and conservative timing or rate limits. - Do not use broad host discovery, full-port scans, OS detection, aggressive mode, or NSE categories by default. - Save larger scan outputs to files rather than streaming them into the conversation. - Treat NSE results and service versions as evidence to validate before reporting impact. ## Common workflows Targeted service/version scan for known ports: ```sh nmap -sV --version-light -T2 --max-rate 20 -p 22,80,443 -oA nmap-target 192.0.2.10 ``` Lightweight version check for web ports: ```sh nmap -sV --version-light -T2 --max-rate 20 -p 80,443 -oN nmap-web.txt example.com ``` Targeted TCP check when host discovery is unreliable or blocked: ```sh nmap -Pn --open -T2 --max-rate 20 -p 22,80,443 -oA nmap-tcp 192.0.2.10 ``` Use NSE scripts only when the script purpose, target service, and authorization are explicit. ## Output - Report target scope, command used, open ports, detected services, versions, and any script findings.
View on GitHub