academic-paper-reviewe…
Simulates academic peer review, evaluating papers across Originality, Methodology, Results, and Writing to provide Major/Minor Revision recommendations with…
This skill should be used when the user asks to "pentest WordPress sites", "scan WordPress for vulnerabilities", "enumerate WordPress users, themes, or plugins", "exploit WordPress vulnerabilities", or "use WPScan". It provides comprehensive WordPress security assessment
$ npx -y skills add zebbern/claude-code-guide --skill wordpress-penetration-testing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/wordpress-penetration-testingContext preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user asks to "pentest WordPress sites", "scan WordPress for vulnerabilities", "enumerate WordPress users, themes, or plugins", "exploit WordPress vulnerabilities", or "use WPScan". It provides comprehensive WordPress security assessment
name: wordpress-penetration-testing description: This skill should be used when the user asks to "pentest WordPress sites", "scan WordPress for vulnerabilities", "enumerate WordPress users, themes, or plugins", "exploit WordPress vulnerabilities", or "use WPScan". It provides comprehensive WordPress security assessment methodologies. metadata: author: zebbern version: "1.1"
Conduct comprehensive security assessments of WordPress installations including enumeration of users, themes, and plugins, vulnerability scanning, credential attacks, and exploitation techniques. WordPress powers approximately 35% of websites, making it a critical target for security testing.
1. **WordPress Enumeration Report** - Version, themes, plugins, users 2. **Vulnerability Assessment** - Identified CVEs and misconfigurations 3. **Credential Assessment** - Weak password findings 4. **Exploitation Proof** - Shell access documentation
Identify WordPress installations:
# Check for WordPress indicators curl -s http://target.com | grep -i wordpress curl -s http://target.com | grep -i "wp-content" curl -s http://target.com | grep -i "wp-includes" # Check common WordPress paths curl -I http://target.com/wp-login.php curl -I http://target.com/wp-admin/ curl -I http://target.com/wp-content/ curl -I http://target.com/xmlrpc.php # Check meta generator tag curl -s http://target.com | grep "generator" # Nmap WordPress detection nmap -p 80,443 --script http-wordpress-enum target.com
Key WordPress files and directories:
Comprehensive WordPress scanning with WPScan:
# Basic scan wpscan --url http://target.com/wordpress/ # With API token (for vulnerability data) wpscan --url http://target.com --api-token YOUR_API_TOKEN # Aggressive detection mode wpscan --url http://target.com --detection-mode aggressive # Output to file wpscan --url http://target.com -o results.txt # JSON output wpscan --url http://target.com -f json -o results.json # Verbose output wpscan --url http://target.com -v
Identify WordPress version:
# WPScan version detection wpscan --url http://target.com # Manual version checks curl -s http://target.com/readme.html | grep -i version curl -s http://target.com/feed/ | grep -i generator curl -s http://target.com | grep "?ver=" # Check meta generator curl -s http://target.com | grep 'name="generator"' # Check RSS feeds curl -s http://target.com/feed/ curl -s http://target.com/comments/feed/
Version sources:
Identify installed themes:
# Enumerate all themes wpscan --url http://target.com -e at # Enumerate vulnerable themes only wpscan --url http://target.com -e vt # Theme enumeration with detection mode wpscan --url http://target.com -e at --plugins-detection aggressive # Manual theme detection curl -s http://target.com | grep "wp-content/themes/" curl -s http://target.com/wp-content/themes/
Theme vulnerability checks:
# Search for theme exploits searchsploit wordpress theme <theme_name> # Check theme version curl -s http://target.com/wp-content/themes/<theme>/style.css | grep -i version curl -s http://target.com/wp-content/themes/<theme>/readme.txt
Identify installed plugins:
# Enumerate all plugins wpscan --url http://target.com -e ap # Enumerate vulnerable plugins only wpscan --url http://target.com -e vp # Aggressive plugin detection wpscan --url http://target.com -e ap --plugins-detection aggressive # Mixed detection mode wpscan --url http://target.com -e ap --plugins-detection mixed # Manual plugin discovery curl -s http://target.com | grep "wp-content/plugins/" curl -s http://target.com/wp-content/plugins/
Common vulnerable plugins to check:
# Search for plugin exploits searchsploit wordpress plugin <plugin_name> searchsploit wordpress mail-masta searchsploit wordpress slideshow gallery searchsploit wordpress reflex gallery # Check plugin version curl -s http://target.com/wp-content/plugins/<plugin>/readme.txt
Discover WordPress users:
# WPScan user enumeration
wpscan --url http://target.com -e u
# Enumerate specific number of users
wpscan --url http://target.com -e u1-100
# Author ID enumeration (manual)
for i in {1..20}; do
curl -s "http://target.com/?author=$i" | grep -o 'author/[^/]*/'
done
# JSON API user enumeration (if enabled)
curl -s http://target.com/wp-json/wp/v2/users
# REST API user enumeration
curl -s http://target.com/wp-json/wp/v2/users?per_page=100
# Login error enumeration
curl -X POST -d "log=admin&pwd=wrongpass" http://target.com/wp-login.phpRun all enumeration modules:
# Enumerate everything wpscan --url http://target.com -e at -e ap -e u # Alternative comprehensive scan wpscan --url http://target.com -e vp,vt,u,cb,dbe # Enumeration flags: # at - All themes # vt - Vulnerable themes # ap - All plugins # vp - Vulnerable plugins # u - Users (1-10) # cb - Config backups # dbe - Database exp
Claude Code Guide - Setup, Commands, workflows, agents, skills & tips-n-tricks from beginner to power user!
Repo: zebbern/claude-code-guide
Simulates academic peer review, evaluating papers across Originality, Methodology, Results, and Writing to provide Major/Minor Revision recommendations with…
This skill should be used when the user asks to "attack Active Directory", "exploit AD", "Kerberoasting", "DCSync", "pass-the-hash", "BloodHound enumeration",…
This skill should be used when the user asks to "test API security", "fuzz APIs", "find IDOR vulnerabilities", "test REST API", "test GraphQL", "API…
Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface…
Interactive system flow tracing across CODE, API, AUTH, DATA, NETWORK layers with SQLite persistence and Mermaid export. Use for security audits, compliance…
Authentication patterns: session vs JWT vs OAuth comparison, provider selection (NextAuth, Clerk, Supabase Auth), security checklist, and common mistakes. Use…