用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill searchsploit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | searchsploit |
| description | Auth/lab ref: Offline CLI search tool for Exploit-DB. |
| license | MIT |
| compatibility | Bash; Linux/macOS; part of exploitdb package. |
| metadata | {"author":"AeonDave","version":"1.1"} |
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 |