Plugins and Themes Enumeration

Plugins

  • curl -s -X GET http://example.com | sed 's/href=/\n/g' | sed 's/src=/\n/g' | grep 'wp-content/plugins/*' | cut -d"'" -f2

Themes

  • curl -s -X GET http://example.com | sed 's/href=/\n/g' | sed 's/src=/\n/g' | grep 'themes' | cut -d"'" -f2

Plugins Active Enumeration

  • curl -I http://example.com/wp-content/plugins/mail-masta
  • If the content does not exist, a 404 Not Found error is returned.

The same applies to installed themes.

Last updated