# ProDyn-NMap-Pro 7.99PDN

Single-file network scanner. 16 MB. 103,292 fingerprints. Drop and run.

## Quick Start

```
nmap.exe <target>
nmap.exe 192.168.1.0/24
nmap.exe -Pn -sT -p 1-1000 10.0.0.0/24
```

That's it. No install. No DLLs. No data files. Everything is inside the binary.

## What's Different from Stock Nmap

| Setting | Stock Nmap | This Build |
|---------|-----------|------------|
| Service detection | OFF (need -sV) | **ON by default** |
| Version intensity | 7 | **9 (max -- fires all custom probes)** |
| Timing | T3 (Normal) | **T4 (Aggressive)** |
| Data files | External files on disk | **Compiled into binary** |
| NSE scripts | Required | **Gracefully skipped if absent** |

## What's Inside (103,292 Fingerprints)

- **238 service probes** -- stock nmap + SAP (42 probes), ICS/SCADA (8 probes), Cobalt Strike C2
- **12,058 match signatures** -- service/version identification
- **6,108 OS fingerprints** -- TCP/IP stack identification (stock, accuracy-preserved)
- **57,215 MAC/OUI vendor entries** -- 2.5x stock (merged OUI-Master-Database)
- **27,461 port/service mappings**

## Npcap (Optional)

Works without Npcap using TCP connect scans. Install Npcap for full capabilities:

| Without Npcap | With Npcap |
|--------------|-----------|
| TCP connect scan (-sT) | SYN stealth scan (-sS) |
| Service detection | + OS fingerprinting |
| Enhanced probes fire | + UDP scanning |
| Works immediately | + ARP host discovery |

Download Npcap: https://npcap.com

## Common Commands

```bash
# Quick scan - top 1000 ports, auto service detection
nmap.exe 192.168.1.0/24

# Specific ports
nmap.exe -p 22,80,443,3389,8080 192.168.1.0/24

# All 65535 ports (takes longer)
nmap.exe -p- 192.168.1.0/24

# Single host deep scan
nmap.exe -Pn -sT -p- 192.168.1.1

# Output to XML (for dashboard import)
nmap.exe -oX scan-results.xml 192.168.1.0/24

# Output to all formats
nmap.exe -oA scan-results 192.168.1.0/24

# Skip host discovery (scan even if ping blocked)
nmap.exe -Pn 192.168.1.0/24

# Quiet mode (less output)
nmap.exe --top-ports 100 -T4 192.168.1.0/24

# With Npcap installed - full power
nmap.exe -sS -sV -O -p- 192.168.1.0/24
```

## Build Info

- Base: nmap 7.99 (source compiled)
- OpenSSL 3.0.16 (static)
- All libraries statically linked (/MT)
- No external dependencies except Windows system DLLs
