agentsclimarketplace

Nmap usage

Skill iammm0/secbot/skills/base/nmap-usage

Professional nmap scanning techniques and optimization for penetration testing. Use this skill when you need to perform network reconnaissance, port scanning, or service enumeration during authorized security assessments.From its SKILL.md

Install
npx -y skills add iammm0/secbot --skill nmap-usage

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

1.7 KB, 376 tokens by cl100k_base, as published. Nobody here has run it

Nmap Professional Scanning Techniques

Overview

This skill provides advanced nmap scanning techniques optimized for penetration testing engagements.

Timing Optimization

Aggressive Timing (-T4)

Use for fast, reliable scanning on known networks:

nmap -T4 -sS <target>

Stealth Timing (-T2)

Use when avoiding detection is critical:

nmap -T2 -sS -f --data-length 50 <target>

Parallel Scanning

nmap --min-parallelism 100 -p- <target>

Port Selection Strategies

Quick Discovery

nmap --top-ports 100 <target>

Full Port Scan

nmap -p- <target>

Specific Port Ranges

nmap -p 80,443,8080,8443 <target>

Service Detection

Version Detection

nmap -sV --version-intensity 9 <target>

Lightweight Detection

nmap -sV --version-light <target>

OS Detection

Aggressive OS Detection

nmap -O <target>

With Version + Script

nmap -A <target>

Output Formats

XML (for parsing)

nmap -oX report.xml <target>

Grepable

nmap -oG report.gnmap <target>

All Formats

nmap -oA report <target>

Useful NSE Scripts

Vulnerability Scanning

nmap --script vuln <target>

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.