Created
October 16, 2016 03:03
-
-
Save fgilio/b3f1a1d841763587a07208ce403dd745 to your computer and use it in GitHub Desktop.
WPScan Tests
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
// Directly executing ruby | |
wpscan.rb --url https://website.com --wordlist darkc0de.lst --username admin | |
ruby ./wpscan.rb --url https://website.com --wordlist darkc0de.lst --username admin | |
ruby ./wpscan.rb --url https://website.com | |
ruby ./wpscan.rb -u https://website.com --wordlist darkc0de.lst --username admin threads 50 | |
ruby wpscan.rb --url https://website.com --wordlist passwords.txt threads 50 | |
// From Docker | |
docker run --rm wpscanteam/wpscan -u https://website.com --wordlist darkc0de.lst --username admin | |
docker run --rm wpscanteam/wpscan -u https://website.com --wordlist /Users/fgilio/wpscan/darkc0de.lst --username admin | |
docker run --rm wpscanteam/wpscan -u https://website.com --username admin | |
docker run --rm wpscanteam/wpscan --update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment