بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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.