skills/recon-fingerprint/SKILL.md
Web fingerprinting and WAF detection using wafw00f, whatweb, nuclei, and httpx. Use this skill when user needs to identify web technologies, detect WAF/CDN, analyze server headers, or fingerprint web applications and frameworks.
npx skillsauth add 0X6C7879/aegissec recon-fingerprintInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
IMPORTANT: Web fingerprinting sends requests to target servers. Always ensure you have:
Required tools that must be installed on your system:
go install -v github.com/projectdiscovery/httpx/cmd/httpx@latestgo install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latestOptional tools:
pip install wafw00fgo install github.com/praetorian-inc/fingerprintx/cmd/fingerprintx@latestMost commonly used commands for web fingerprinting:
whatweb https://target.com
wafw00f https://target.com
curl -I https://target.com
nuclei -u https://target.com -tags tech
When you need to quickly identify the technology stack:
whatweb https://target.com --aggression 1
Parameters:
--aggression 1 - Quick scan (1-4, default 1)-a 3 - More aggressive (more requests)-v - Verbose outputExample:
whatweb https://target.com -a 3
When you need to detect WAF/CDN protection:
wafw00f https://target.com
Output shows:
Check multiple targets:
wafw00f -i targets.txt
When you need to analyze HTTP headers:
curl -I https://target.com
Detailed headers:
curl -v https://target.com 2>&1 | grep -i "< "
Common headers to check:
Server: nginx/1.18.0
X-Powered-By: PHP/7.4
X-AspNet-Version: 4.0.30319
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
Strict-Transport-Security: max-age=31536000
When you need comprehensive technology fingerprinting:
nuclei -u https://target.com -tags tech -severity info
Specific technologies:
nuclei -u https://target.com -tags "wordpress,joomla,drupal"
nuclei -u https://target.com -tags "spring-boot,struts2"
nuclei -u https://target.com -tags "react,vue,angular"
When you need fast HTTP probing with tech detection:
httpx -u https://target.com -tech-detect -status-code -title
Parameters:
-tech-detect - Enable technology detection-status-code - Show HTTP status-title - Extract page title-server - Show server header-websocket - Detect WebSocket-cdn - Detect CDNExample:
httpx -u https://target.com -tech-detect -server -cdn -ssl
When you need to identify the CMS:
whatweb https://target.com --aggression 3 | grep -i cms
Nuclei CMS detection:
nuclei -u https://target.com -tags cms
Common CMS indicators:
/wp-login.php, /wp-admin/, wp-json/user/login, Drupal.settings/administrator/components, Joomla!/typo3confWhen you need to identify frontend frameworks:
curl -s https://target.com | grep -i "react\|vue\|angular\|jquery"
Check specific framework files:
# React
curl -s https://target.com | grep -i "react"
# Vue.js
curl -s https://target.com | grep -i "vue\.js\|vue-"
# Angular
curl -s https://target.com | grep -i "angular\|ng-app"
# jQuery
curl -s https://target.com | grep -i "jquery"
When you need to identify server software and version:
nmap -sV -p 443,80 target.com
HTTP server banner:
curl -I https://target.com | grep -i server
Use httpx for server detection:
httpx -u https://target.com -server -response-time
When you need to identify CDN providers:
httpx -u https://target.com -cdn
Check HTTP headers for CDN:
curl -I https://target.com | grep -i "cf-ray\|x-amz\|x-akamai\|x-fastly"
Common CDN headers:
cf-ray, cf-cache-statusx-amz-cf-idx-akamai-transformedx-served-by, fastly-sslvia, x-amz-cf-popWhen you need to analyze SSL configuration:
nmap --script ssl-cert,ssl-enum-ciphers -p 443 target.com
SSL info with curl:
curl -vI https://target.com 2>&1 | grep -i ssl
Using testssl.sh:
testssl.sh https://target.com
| Scenario | Recommended Tool | Command |
|----------|------------------|---------|
| Quick tech detect | whatweb | whatweb https://target.com |
| WAF detection | wafw00f | wafw00f https://target.com |
| Header analysis | curl | curl -I https://target.com |
| Comprehensive | nuclei | nuclei -u https://target.com -tags tech |
| Fast probing | httpx | httpx -u https://target.com -tech-detect |
| CMS detection | nuclei | nuclei -u https://target.com -tags cms |
| CDN detection | httpx | httpx -u https://target.com -cdn |
Tool Comparison:
| Tool | Speed | Coverage | Best For | |------|-------|----------|----------| | whatweb | Fast | Good | Quick tech stack | | wafw00f | Fast | WAF only | WAF detection | | nuclei | Medium | Excellent | Comprehensive | | httpx | Very Fast | Basic | Fast probing | | nmap | Slow | Deep | SSL/Server details |
| Server | Header Pattern | Common Versions |
|--------|---------------|-----------------|
| nginx | Server: nginx | 1.18.x, 1.20.x, 1.22.x |
| Apache | Server: Apache | 2.4.x, 2.2.x |
| IIS | Server: Microsoft-IIS | 7.5, 8.0, 8.5, 10.0 |
| Cloudflare Server | Server: cloudflare | - |
| Framework | Indicators |
|-----------|------------|
| PHP | X-Powered-By: PHP, .php URLs |
| Python | Server: WSGIServer, Python headers |
| Ruby | X-Powered-By: Phusion Passenger |
| Node.js | X-Powered-By: Express |
| Java | X-Powered-By: JSP, .jspx, .do |
| .NET | X-AspNet-Version, .aspx |
| Go | Server: Go-http-server |
| Framework | File/Pattern |
|-----------|---------------|
| React | react.js, react-dom, _react, __REACT__ |
| Vue.js | vue.js, vue-router, v-if, v-for |
| Angular | ng-app, angular.js, zone.js |
| jQuery | jquery.js, $(, .ajax() |
| WAF | Detection Method |
|-----|-----------------|
| Cloudflare | cf-ray, cf-cache-status headers |
| AWS WAF | x-amz-cf-id headers |
| Imperva | X-Iinfo, X-CDN headers |
| Akamai | akamai-origin headers |
| F5 ASM | BIGipServer cookies |
| ModSecurity | Mod_Security headers |
| Barracuda | barra_counter_session cookies |
scripts/extract_headers.py - Extract and analyze HTTP headersscripts/tech_matcher.py - Match technologies from responsesscripts/waf_detector.py - Detect WAF from headers/cookiesreferences/whatweb_guide.md - WhatWeb reference guidereferences/wafw00f_guide.md - WAF detection guidereferences/httpx_guide.md - HTTPx referencereferences/fingerprinting_techniques.md - Advanced fingerprinting methodsWhen you need to persist web fingerprinting results to the database:
# Manual entry after fingerprinting
python .claude/skills/recon-fingerprint/scripts/fingerprint_storage.py \
--host-ip 192.168.1.100 \
--url "https://example.com" \
--technology "Apache 2.4.41" \
--category "web-server" \
--version "2.4.41" \
--subsystem "Web Application"
Parameters:
--host-ip - Target host IP (required)--url - Target URL (required)--technology - Discovered technology (required)--category - Technology category: web-server, cms, framework, etc. (optional)--version - Technology version (optional)--confidence - Confidence level (optional)--subsystem - Subsystem name (optional)Database location: ./data/results.db
Related skills: results-storage - Query data, generate reports
assets/waf-signatures.txt - Known WAF signaturesassets/tech-headers.txt - Technology header patternsassets/cms-fingerprints.txt - CMS detection patternsdevelopment
WooYun-derived business-logic testing methodology for web apps and APIs. Use when the request involves 支付、退款、订单、越权、认证、授权、价格篡改或业务流程绕过 review, especially black-box probing for price tampering, account takeover, and process bypass flaws.
tools
Escalate privileges on Windows systems using service misconfigurations, DLL hijacking, token manipulation, UAC bypasses, registry exploits, and credential dumping. Use when performing Windows post-exploitation or privilege escalation.
development
Use when performing AD pentest tunneling and pivoting, especially with Ligolo-ng, Chisel, frp, proxychains, SSH forwarding, SOCKS relays, reverse tunnels, or when internal reachability is the main blocker.
development
Threat model, security audit, find vulnerabilities, check security of my app, risk assessment, penetration test prep, analyze attack surface, what could an attacker exploit. Use this skill whenever a user wants holistic security analysis of a codebase, application, or project. MUST be invoked instead of analyzing security yourself — it runs a specialized 8-phase STRIDE workflow producing professional deliverables you cannot generate alone: risk assessment reports, DFD diagrams, threat inventories, attack path validation, mitigation plans, and pentest plans. Trigger on: 威胁建模, 安全评估, 渗透测试, 安全分析, 安全审计, 安全检查, 风险评估. NOT for: fixing one specific bug, adding one security feature (rate limiting, CORS), writing tests, CI/CD setup, or debugging errors.