offensive-tools/exploits/searchsploit/SKILL.md
Auth/lab ref: Offline CLI search tool for Exploit-DB.
npx skillsauth add aeondave/malskill searchsploitInstall 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.
Offline Exploit-DB search — find public exploits by software name, version, or CVE.
# Install
apt install exploitdb
# Search by product
searchsploit apache 2.4
# Search by CVE
searchsploit CVE-2021-41773
# Exact phrase
searchsploit -e "remote code execution"
# Copy exploit to current dir
searchsploit -m 50383
| Flag | Purpose |
|------|---------|
| -t TERM | Search title only |
| -e TERM | Exact match |
| -m ID | Mirror/copy exploit file |
| -p ID | Show full path |
| -x ID | Examine exploit in pager |
| --cve CVE | Search by CVE |
| -w | Show web URL (exploitdb.com) |
| --nmap FILE | Parse Nmap XML and find exploits |
| -u | Update local database |
| --id | Show EDB-ID |
Find exploits from Nmap scan:
nmap -sV target.com -oX scan.xml
searchsploit --nmap scan.xml
Filter by type:
# Local privilege escalation only
searchsploit -t "local" apache 2.4
# Remote exploits only
searchsploit -t "remote" openssh
# Web application exploits
searchsploit -t "webapps" wordpress 5.8
JSON output (for scripting):
searchsploit --json apache 2.4 | jq '.RESULTS_EXPLOIT[] | {title: .Title, path: .Path}'
Examine and copy relevant exploit:
searchsploit -x 50383 # Read it
searchsploit -m 50383 # Copy to ./
Show web URL for online reference:
searchsploit -w openssh 8.2
Update local DB:
searchsploit -u
/usr/share/exploitdb/exploits/https://www.exploit-db.com/exploits/<EDB-ID>-m, inspect the exploit header for compilation/usage notes before running| File | When to load |
|------|--------------|
| references/exploit-notes.md | Exploit compilation, modification, and testing notes |
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.