diff --git a/README.md b/README.md index 05df41fc..0f3d8310 100644 --- a/README.md +++ b/README.md @@ -260,6 +260,7 @@ Published on https://hub.docker.com/r/wpscanteam/wpscan/ --proxy-auth Supply the proxy login credentials. --basic-auth Set the HTTP Basic authentication. --wordlist | -w Supply a wordlist for the password brute forcer. + If the "-" option is supplied, the wordlist is expected via STDIN. --username | -U Only brute force the supplied username. --usernames Only brute force the usernames from the file. --cache-dir Set the cache directory. @@ -283,6 +284,10 @@ Do wordlist password brute force on enumerated users using 50 threads... ```ruby wpscan.rb --url www.example.com --wordlist darkc0de.lst --threads 50``` +Do wordlist password brute force on enumerated users using STDIN as the wordlist... + +```crunch 5 13 -f charset.lst mixalpha | ruby wpscan.rb --url www.example.com --wordlist -``` + Do wordlist password brute force on the 'admin' username only... ```ruby wpscan.rb --url www.example.com --wordlist darkc0de.lst --username admin```