Skip to content

Instantly share code, notes, and snippets.

@3m3x
Last active September 13, 2019 14:17
Show Gist options
  • Save 3m3x/0b3839ffb2a72486b8f64a216284d4f8 to your computer and use it in GitHub Desktop.
Save 3m3x/0b3839ffb2a72486b8f64a216284d4f8 to your computer and use it in GitHub Desktop.
Get info on Wordpress installs
export API_TOKEN=YOUR_WPVULNDB_API_TOKEN
# Get all vuln info foor Wordpress 5.2.3
curl -H "Authorization: Token token=$API_TOKEN" https://wpvulndb.com/api/v3/wordpresses/523
# Get all of the vulnerabilities that affect a particular plugin
curl -H "Authorization: Token token=API_TOKEN" https://wpvulndb.com/api/v3/plugins/eshop
# Get all of the vulnerabilities that affect a particular theme
curl -H "Authorization: Token token=API_TOKEN" https://wpvulndb.com/api/v3/themes/pagelines
# Get fine-grained details of everything running in a Wordpress install
# https://github.com/wpscanteam/wpscan`
# gem install wpscan
wpscan --api-token $API_TOKEN --url https://www.postofficefarmnursery.com.au
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment