scanning-network-with-nmap-advanced

Featured

Performs advanced network reconnaissance using Nmap's scripting engine, timing controls, evasion techniques, and output parsing to discover hosts, enumerate services, detect vulnerabilities, and fingerprint operating systems across authorized target networks.

AI & Automation 12,642 stars 1468 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Scanning Network with Nmap Advanced Techniques ## When to Use - Performing comprehensive asset discovery across large enterprise networks during authorized assessments - Enumerating service versions and configurations to identify outdated or vulnerable software - Bypassing firewall rules and IDS during authorized penetration tests using scan evasion techniques - Scripting automated vulnerability checks using the Nmap Scripting Engine (NSE) - Generating structured scan output for integration into vulnerability management pipelines **Do not use** against networks without explicit written authorization, on production systems during peak hours without approval, or to perform denial-of-service through aggressive scan timing. ## Prerequisites - Nmap 7.90+ installed (`nmap --version` to verify) - Root/sudo privileges for SYN scans, OS detection, and raw packet techniques - Written authorization specifying in-scope IP ranges and any excluded hosts - Network access to target ranges (VPN, direct connection, or jump host) - Familiarity with TCP/IP protocols and common port assignments ## Workflow ### Step 1: Host Discovery with Multiple Probes Use layered discovery to find live hosts even when ICMP is blocked: ```bash # ARP discovery for local subnet (most reliable on LAN) nmap -sn -PR 192.168.1.0/24 -oA discovery_arp # Combined ICMP + TCP + UDP probes for remote networks nmap -sn -PE -PP -PS21,22,25,80,443,445,3389,8080 -PU53,161,500 10.0.0.0/16 -oA discovery_combined # Li...

Details

Author
mukul975
Repository
mukul975/Anthropic-Cybersecurity-Skills
Created
3 months ago
Last Updated
today
Language
Python
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

recon-nmap

Network reconnaissance and security auditing using Nmap for port scanning, service enumeration, and vulnerability detection. Use when: (1) Conducting authorized network reconnaissance and asset discovery, (2) Enumerating network services and identifying running versions, (3) Detecting security vulnerabilities through NSE scripts, (4) Mapping network topology and firewall rules, (5) Performing compliance scanning for security assessments, (6) Validating network segmentation and access controls.

335 Updated today
aiskillstore
AI & Automation Listed

nmap

Professional network reconnaissance and port scanning using nmap. Supports various scan types (quick, full, UDP, stealth), service detection, vulnerability scanning, and NSE scripts. Use when you need to enumerate network services, detect versions, or perform network reconnaissance.

335 Updated today
aiskillstore
AI & Automation Listed

scanning-tools

This skill should be used when the user asks to "perform vulnerability scanning", "scan networks for open ports", "assess web application security", "scan wireless networks", "detec...

335 Updated today
aiskillstore
AI & Automation Featured

scanning-tools

Master essential security scanning tools for network discovery, vulnerability assessment, web application testing, wireless security, and compliance validation. This skill covers tool selection, configuration, and practical usage across different scanning categories.

39,227 Updated today
sickn33
AI & Automation Solid

security-scanning-tools

This skill should be used when the user asks to "perform vulnerability scanning", "scan networks for open ports", "assess web application security", "scan wireless networks", "detect malware", "check cloud security", or "evaluate system compliance". It provides comprehensive guidance on security scanning tools and methodologies.

4,215 Updated today
zebbern