一键导入
pentest
Penetration testing tools for the CodeAgent — network scanning, service enumeration, and vulnerability checks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Penetration testing tools for the CodeAgent — network scanning, service enumeration, and vulnerability checks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Obsidian Local REST API tools for the CodeAgent — manage vault notes, search, and metadata
Frida dynamic instrumentation tools for the CodeAgent — mobile app analysis and SSL unpinning
DuckDB in-process analytics tools for the CodeAgent — SQL on CSV/Parquet/JSON without a server
Supabase client tools for the CodeAgent — database CRUD, auth, storage, and edge functions
OSINT reconnaissance tools for the CodeAgent — domain, IP, email, and social media intelligence
Use BEFORE any creative work — creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements, and design before implementation.
基于 SOC 职业分类
| name | pentest |
| description | Penetration testing tools for the CodeAgent — network scanning, service enumeration, and vulnerability checks |
This skill extends the CodeAgent with penetration testing functions. Wraps common security tools (nmap, nikto, dirb, etc.) and provides structured output for automated security assessments.
# Debian/Ubuntu
sudo apt install nmap nikto dirb whatweb sslscan
pentest_portscan(target, ports="1-1000", flags="-sV") — nmap port scanpentest_service_enum(target, port) — service version detectionpentest_web_headers(url) — security header analysispentest_ssl_check(host, port=443) — SSL/TLS configuration auditpentest_dir_brute(url, wordlist=None) — directory brute-forcingpentest_whatweb(url) — web technology fingerprintingpentest_vuln_scan(target, scripts="vuln") — nmap vulnerability scriptstarget = "scanme.nmap.org"
# Port scan
print(pentest_portscan(target, ports="22,80,443"))
# Security headers
headers = pentest_web_headers(f"http://{target}")
for h, v in headers.items():
print(f" {h}: {v}")
# SSL check
print(pentest_ssl_check(target))
Only use these tools on systems you own or have explicit written permission to test. Unauthorized scanning is illegal in most jurisdictions.