Last active
September 13, 2019 14:17
-
-
Save 3m3x/0b3839ffb2a72486b8f64a216284d4f8 to your computer and use it in GitHub Desktop.
Get info on Wordpress installs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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