penetration-tester Verified Silver

Verified Silver · 84/100 security v1.0.0 by Jeremy Longshore

Automated penetration testing for web applications with OWASP Top 10 coverage

MIT License
Free Pricing

Installation

Open Claude Code and run this command:

/plugin install penetration-tester@claude-code-plugins-plus

Use --global to install for all projects, or --project for current project only.

What It Does

Scanner Target What It Checks
security_scanner.py Live URLs Security headers, SSL/TLS, exposed endpoints, HTTP methods, CORS
dependency_auditor.py Project dirs npm and pip vulnerabilities, CVEs, outdated packages
codesecurityscanner.py Codebases Hardcoded secrets, SQL injection, command injection, insecure deserialization

Skills (16)

analyzing-tls-config SKILL.md View full skill →

Analyze a target's TLS configuration — negotiated protocol version, cipher suite, certificate chain, expiry, and downgrade vectors.

ReadBash(python3:*)Bash(openssl:*)
auditing-cors-policy SKILL.md View full skill →

Audit a target's CORS posture — Access-Control-Allow-Origin handling, reflected-origin bypass, credentials+wildcard mismatch, preflight OPTIONS behavior, Vary header correctness.

ReadBash(python3:*)Bash(curl:*)
checking-http-security-headers SKILL.md View full skill →

Audit a target's HTTP security headers — CSP, HSTS, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy, and the Cross-Origin trio (COOP, COEP, CORP).

ReadBash(python3:*)Bash(curl:*)
detecting-command-injection-patterns SKILL.md View full skill →

Scan a source tree for command-injection vulnerable patterns: shell=True calls in Python subprocess, os.

ReadBash(python3:*)GlobGrep
detecting-debug-endpoints SKILL.md View full skill →

Probe a target for accidentally-public admin / debug / introspection endpoints — Spring Boot Actuator, Apache server-status, Prometheus metrics, GraphQL playground, Swagger UI, phpMyAdmin, JMX-over-HTTP (Jolokia), Elasticsearch _cat, Kibana / Grafana / Eureka / Consul panels.

ReadBash(python3:*)Bash(curl:*)
detecting-eval-exec-usage SKILL.md View full skill →

Scan a source tree for dynamic-code-execution APIs that an attacker can hijack: Python eval / exec / compile, JavaScript eval / Function() / setTimeout(string), Ruby eval / instance_eval / class_eval, Java ScriptEngine, PHP eval / assert($str), .

ReadBash(python3:*)GlobGrep
detecting-exposed-secrets-files SKILL.md View full skill →

Probe a target for accidentally-served secret-bearing files in the web root — `.

ReadBash(python3:*)Bash(curl:*)