Created
November 23, 2016 20:18
-
-
Save technosailor/203e4f6139a0de8fcc14f23f3a6f4377 to your computer and use it in GitHub Desktop.
Check all plugins for vulnerabilities via wp-vulnerability-scanner. Requires WP-CLI.
This file contains 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
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