From 3fe49a24c71d730c6b0f4e341296aba63abd55aa Mon Sep 17 00:00:00 2001 From: erwanlr Date: Wed, 10 Dec 2014 18:17:04 +0100 Subject: [PATCH] Updates the readmes to reflect the new --usernames option --- README | 4 +++- README.md | 12 +++++++----- lib/wpscan/wpscan_helper.rb | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/README b/README index 578ee802..47e74bb5 100644 --- a/README +++ b/README @@ -198,12 +198,14 @@ You should have received a copy of the GNU General Public License along with thi --basic-auth Set the HTTP Basic authentication. ---wordlist | -w Supply a wordlist for the password bruter and do the brute. +--wordlist | -w Supply a wordlist (with a newline at the end) for the password brute forcer. --threads | -t The number of threads to use when multi-threading requests. --username | -U Only brute force the supplied username. +--usernames Only brute force the usernames from the file (which need to have a newline at the end). + --cache-ttl Typhoeus cache TTL. --request-timeout Request Timeout. diff --git a/README.md b/README.md index eff8abed..a9baa2ad 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ Apple Xcode, Command Line Tools and the libffi are needed (to be able to install Update cURL to version => 7.21.7 (may have to install from source). Installation from sources : - + Grab the sources from http://curl.haxx.se/download.html Decompress the archive Open the folder with the extracted files @@ -131,19 +131,19 @@ Apple Xcode, Command Line Tools and the libffi are needed (to be able to install Run make Run sudo make install Run sudo ldconfig - + - cannot load such file -- readline: sudo aptitude install libreadline5-dev libncurses5-dev Then, open the directory of the readline gem (you have to locate it) - + cd ~/.rvm/src/ruby-1.9.2-p180/ext/readline ruby extconf.rb make make install - + See [http://vvv.tobiassjosten.net/ruby-on-rails/fixing-readline-for-the-ruby-on-rails-console/](http://vvv.tobiassjosten.net/ruby-on-rails/fixing-readline-for-the-ruby-on-rails-console/) for more details @@ -199,12 +199,14 @@ Apple Xcode, Command Line Tools and the libffi are needed (to be able to install --basic-auth Set the HTTP Basic authentication. - --wordlist | -w Supply a wordlist for the password bruter and do the brute. + --wordlist | -w Supply a wordlist (with a newline at the end) for the password brute forcer. --threads | -t The number of threads to use when multi-threading requests. --username | -U Only brute force the supplied username. + --usernames Only brute force the usernames from the file (which need to have a newline at the end). + --cache-ttl Typhoeus cache TTL. --request-timeout Request Timeout. diff --git a/lib/wpscan/wpscan_helper.rb b/lib/wpscan/wpscan_helper.rb index 5d92e4ca..508cc49e 100644 --- a/lib/wpscan/wpscan_helper.rb +++ b/lib/wpscan/wpscan_helper.rb @@ -97,7 +97,7 @@ def help puts ' If no protocol is given (format host:port), HTTP will be used.' puts '--proxy-auth Supply the proxy login credentials.' puts '--basic-auth Set the HTTP Basic authentication.' - puts '--wordlist | -w Supply a wordlist (with a newline at the end) for the password bruter and do the brute force.' + puts '--wordlist | -w Supply a wordlist (with a newline at the end) for the password brute forcer.' puts '--username | -U Only brute force the supplied username.' puts '--usernames Only brute force the usernames from the file (which need to have a newline at the end).' puts '--threads | -t The number of threads to use when multi-threading requests.'