Skip to content

Instantly share code, notes, and snippets.

@technosailor
Created November 23, 2016 20:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technosailor/203e4f6139a0de8fcc14f23f3a6f4377 to your computer and use it in GitHub Desktop.
Save technosailor/203e4f6139a0de8fcc14f23f3a6f4377 to your computer and use it in GitHub Desktop.
Check all plugins for vulnerabilities via wp-vulnerability-scanner. Requires WP-CLI.
for plugin in `wp plugin list --format=csv | cut -d , -f 1`;
do
wp vuln plugin-check $plugin;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment