Home / iammm0 / secbot · server/skills/base/nmap-usage/SKILL.md · GitHub

nmap-usage skillA

nmap-usage is agent-read markdown (skill) from iammm0/secbot: 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..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# 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:
```bash
nmap -T4 -sS <target>
```

### Stealth Timing (`-T2`)
Use when avoiding detection is critical:
```bash
nmap -T2 -sS -f --data-length 50 <target>
```

### Parallel Scanning
```bash
nmap --min-parallelism 100 -p- <target>
```

## Port Selection Strategies

### Quick Discovery
```bash
nmap --top-ports 100 <target>
```

### Full Port Scan
```bash
nmap -p- <target>
```

### Specific Port Ranges
```bash
nmap -p 80,443,8080,8443 <target>
```

## Service Detection

### Version Detection
```bash
nmap -sV --version-intensity 9 <target>
```

### Lightweight Detection
```bash
nmap -sV --version-light <target>
```

## OS Detection

### Aggressive OS Detection
```bash
nmap -O <target>
```

### With Version + Script
```bash
nmap -A <target>
```

## Output Formats

### XML (for parsing)
```bash
nmap -oX report.xml <target>
```

### Grepable
```bash
nmap -oG report.gnmap <target>
```

### All Formats
```bash
nmap -oA report <target>
…

Read the whole file at its exact version.

How to install

Latest version
mdr add iammm0/secbot/nmap-usage@v1.0.0
Exact content
mdr add iammm0/secbot/nmap-usage@sha256:0d67eb564f67833b

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_gl6fxwytb3r3ez5g.svg)](https://markdownregistry.com/a/art_gl6fxwytb3r3ez5g)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
v1.0.0 latest2026-09-23 3f08243 1,777 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (1777 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

iammm0/secbot · 74 stars · license NOASSERTION · pushed 2026-09-23 · branch release

API

GET https://markdownregistry.com/api/v1/artifacts/art_gl6fxwytb3r3ez5g
GET https://markdownregistry.com/api/v1/resolve?ref=iammm0/secbot/nmap-usage
GET https://markdownregistry.com/api/v1/blob/0d67eb564f67833b6a5a99bc3cf10ca21b55b4af8a02aa65451c6670ef78a78a

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from iammm0/secbot

AGENTS.md agents
iammm0/secbot · AGENTS.md
git:20260923.9b9efc0 · audit A · 74 stars
CLAUDE.md claude
iammm0/secbot · CLAUDE.md
git:20260923.9b9efc0 · audit A · 74 stars
command-execution skill
iammm0/secbot · server/skills/base/command-execution/SKILL.md · Security-focused command execution techniques for penetration testing. Use this skill when executing system commands…
v1.0.0 · audit A · 74 stars
system-commands skill
iammm0/secbot · server/skills/base/system-commands/SKILL.md · System-level commands for security assessment and system enumeration. Use this skill when performing local system…
v1.0.0 · audit A · 74 stars
system-control skill
iammm0/secbot · server/skills/base/system-control/SKILL.md · Comprehensive system control operations for security testing. Use this skill when you need unified access to file…
v1.0.0 · audit A · 74 stars
terminal-session skill
iammm0/secbot · server/skills/base/terminal-session/SKILL.md · Persistent terminal session management for security testing. Use this skill when you need an interactive shell session…
v1.0.0 · audit A · 74 stars
execgo-agent-bridge skill
iammm0/secbot · server/skills/custom/execgo-agent-bridge/SKILL.md · Route shell, runtime.command, runtime.script, mcp.call, cli.run, or task_graph.submit work through Secbot's…
v1.0.0 · audit B · 74 stars

Every file in iammm0/secbot

Browse by kind, by grade A, or by owner.