network-101

Featured

This skill should be used when the user asks to "set up a web server", "configure HTTP or HTTPS", "perform SNMP enumeration", "configure SMB shares", "test network services", or needs guidance on configuring and testing network services for penetration testing labs.

AI & Automation 4,441 stars 447 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 96/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

# Network 101 ## Purpose Configure and test common network services (HTTP, HTTPS, SNMP, SMB) for penetration testing lab environments. Enable hands-on practice with service enumeration, log analysis, and security testing against properly configured target systems. ## Inputs/Prerequisites - Windows Server or Linux system for hosting services - Kali Linux or similar for testing - Administrative access to target system - Basic networking knowledge (IP addressing, ports) - Firewall access for port configuration ## Outputs/Deliverables - Configured HTTP/HTTPS web server - SNMP service with accessible communities - SMB file shares with various permission levels - Captured logs for analysis - Documented enumeration results ## Core Workflow ### 1. Configure HTTP Server (Port 80) Set up a basic HTTP web server for testing: **Windows IIS Setup:** 1. Open IIS Manager (Internet Information Services) 2. Right-click Sites → Add Website 3. Configure site name and physical path 4. Bind to IP address and port 80 **Linux Apache Setup:** ```bash # Install Apache sudo apt update && sudo apt install apache2 # Start service sudo systemctl start apache2 sudo systemctl enable apache2 # Create test page echo "<html><body><h1>Test Page</h1></body></html>" | sudo tee /var/www/html/index.html # Verify service curl http://localhost ``` **Configure Firewall for HTTP:** ```bash # Linux (UFW) sudo ufw allow 80/tcp # Windows PowerShell New-NetFirewallRule -DisplayName "HTTP" -Direction Inbo...

Details

Author
zebbern
Repository
zebbern/claude-code-guide
Created
1 years ago
Last Updated
2 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category