offensive-tools/recon/eyewitness/SKILL.md
Auth/lab ref: Web screenshotting and reporting tool that captures screenshots of web services and generates an HTML report.
npx skillsauth add aeondave/malskill eyewitnessInstall 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.
Screenshots web services and produces an HTML report with categorized results.
# Screenshot from URL list
eyewitness -f urls.txt --web
# Screenshot from nmap XML
eyewitness -x nmap_scan.xml --web
# Specify output directory
eyewitness -f urls.txt --web -d output/eyewitness
| Flag | Description |
|------|-------------|
| -f <file> | Input file with URLs/hosts |
| -x <xml> | Nmap XML output file |
| --web | HTTP screenshotting (default) |
| --rdp | RDP screenshots |
| --vnc | VNC screenshots |
| -d <dir> | Output directory |
| --no-prompt | Skip interactive prompts |
| --timeout <n> | Per-target timeout (default 7s) |
| --threads <n> | Threads (default 10) |
| --delay <n> | Delay between requests |
| --proxy-ip <ip> | Proxy IP |
| --proxy-port <port> | Proxy port |
| --resolve | Resolve IP addresses |
| --add-http-headers <h> | Add custom headers |
| --user-agent <ua> | Custom user agent |
| --prepend-https | Prepend https:// to input |
| --prepend-http | Prepend http:// to input |
| --active-scan | Active fingerprinting |
| --jitter <n> | Jitter between screenshots |
# Screenshot a subdomain list
cat subs.txt | sed 's/^/http:\/\//' > urls.txt
eyewitness -f urls.txt --web -d report/ --no-prompt
# From nmap scan + report
nmap -sV -p 80,443,8080,8443 -oX scan.xml 192.168.1.0/24
eyewitness -x scan.xml --web -d web_report/ --no-prompt
# With both HTTP and HTTPS
eyewitness -f hosts.txt --prepend-http --prepend-https --web -d out/
# RDP screenshot of internal network
eyewitness -f hosts.txt --rdp -d rdp_report/
EyeWitness produces:
report.html — categorized screenshots with HTTP headers, page titles, response codesMatches/ — signature-based categories (login pages, Cisco, Citrix, VMware, etc.)Screenshots/ — raw screenshot images (PNG)Eyewitness.db — SQLite database with all results# From subfinder → httpx → eyewitness
subfinder -d target.com -silent | \
httpx -silent | \
tee live_hosts.txt | \
eyewitness --web -f /dev/stdin -d eyewitness_out/ --no-prompt
# From masscan/nmap port scan
masscan -p 80,443,8080,8443,8000,8888 192.168.1.0/24 -oX masscan.xml
eyewitness -x masscan.xml --web -d report/ --no-prompt
# Include non-standard ports (use httpx first)
cat hosts.txt | httpx -ports 80,443,8080,8443,3000,5000,8888 -silent | \
eyewitness --web -f /dev/stdin -d report/ --no-prompt
| File | When to load |
|------|--------------|
| references/report-tips.md | HTML report layout, signature categories, pipeline integration, DB queries |
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.