enumeration
1. Basic WordPress Identification
curl -s http://blog.inlanefreight.local/robots.txt # Check for disallowed paths
curl -s http://blog.inlanefreight.local/wp-admin/ # Observe redirection behavior
curl -s http://blog.inlanefreight.local/wp-content/plugins/ # Check for plugin directory
curl -s http://blog.inlanefreight.local/wp-content/themes/ # Check for theme directory2. WordPress Version and Theme Enumeration
curl -s http://blog.inlanefreight.local | grep -i "WordPress" # Check for version details
curl -s http://blog.inlanefreight.local/ | grep -i "themes" # Identify themes
curl -s http://blog.inlanefreight.local/wp-content/themes/transport-gravity/style.css # Check theme stylesheet
curl -s http://blog.inlanefreight.local/wp-content/themes/transport-gravity/readme.txt # Check theme readme3. Plugin Enumeration
curl -s http://blog.inlanefreight.local/ | grep -i "plugins"
curl -s http://blog.inlanefreight.local/wp-content/plugins/mail-masta/readme.txt # Check for version info
curl -s http://blog.inlanefreight.local/?p=1 | grep -i "plugins" # Look for references in page content4. User Enumeration (Manual)
5. WPScan Enumeration
WPScan Advanced Enumeration
WPScan Brute-force Attack
WPScan with Proxy
6. XML-RPC Checks
XML-RPC Exploitation
7. Additional Security Checks
Robots.txt Insights
Page Source Analysis
Detect Open Directory Listings
Last updated