Updates the readmes to reflect the new --usernames option
This commit is contained in:
4
README
4
README
@@ -198,12 +198,14 @@ You should have received a copy of the GNU General Public License along with thi
|
|||||||
|
|
||||||
--basic-auth <username:password> Set the HTTP Basic authentication.
|
--basic-auth <username:password> Set the HTTP Basic authentication.
|
||||||
|
|
||||||
--wordlist | -w <wordlist> Supply a wordlist for the password bruter and do the brute.
|
--wordlist | -w <wordlist> Supply a wordlist (with a newline at the end) for the password brute forcer.
|
||||||
|
|
||||||
--threads | -t <number of threads> The number of threads to use when multi-threading requests.
|
--threads | -t <number of threads> The number of threads to use when multi-threading requests.
|
||||||
|
|
||||||
--username | -U <username> Only brute force the supplied username.
|
--username | -U <username> Only brute force the supplied username.
|
||||||
|
|
||||||
|
--usernames <path-to-file> Only brute force the usernames from the file (which need to have a newline at the end).
|
||||||
|
|
||||||
--cache-ttl <cache-ttl> Typhoeus cache TTL.
|
--cache-ttl <cache-ttl> Typhoeus cache TTL.
|
||||||
|
|
||||||
--request-timeout <request-timeout> Request Timeout.
|
--request-timeout <request-timeout> Request Timeout.
|
||||||
|
|||||||
12
README.md
12
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).
|
Update cURL to version => 7.21.7 (may have to install from source).
|
||||||
|
|
||||||
Installation from sources :
|
Installation from sources :
|
||||||
|
|
||||||
Grab the sources from http://curl.haxx.se/download.html
|
Grab the sources from http://curl.haxx.se/download.html
|
||||||
Decompress the archive
|
Decompress the archive
|
||||||
Open the folder with the extracted files
|
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 make
|
||||||
Run sudo make install
|
Run sudo make install
|
||||||
Run sudo ldconfig
|
Run sudo ldconfig
|
||||||
|
|
||||||
|
|
||||||
- cannot load such file -- readline:
|
- cannot load such file -- readline:
|
||||||
|
|
||||||
sudo aptitude install libreadline5-dev libncurses5-dev
|
sudo aptitude install libreadline5-dev libncurses5-dev
|
||||||
|
|
||||||
Then, open the directory of the readline gem (you have to locate it)
|
Then, open the directory of the readline gem (you have to locate it)
|
||||||
|
|
||||||
cd ~/.rvm/src/ruby-1.9.2-p180/ext/readline
|
cd ~/.rvm/src/ruby-1.9.2-p180/ext/readline
|
||||||
ruby extconf.rb
|
ruby extconf.rb
|
||||||
make
|
make
|
||||||
make install
|
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
|
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 <username:password> Set the HTTP Basic authentication.
|
--basic-auth <username:password> Set the HTTP Basic authentication.
|
||||||
|
|
||||||
--wordlist | -w <wordlist> Supply a wordlist for the password bruter and do the brute.
|
--wordlist | -w <wordlist> Supply a wordlist (with a newline at the end) for the password brute forcer.
|
||||||
|
|
||||||
--threads | -t <number of threads> The number of threads to use when multi-threading requests.
|
--threads | -t <number of threads> The number of threads to use when multi-threading requests.
|
||||||
|
|
||||||
--username | -U <username> Only brute force the supplied username.
|
--username | -U <username> Only brute force the supplied username.
|
||||||
|
|
||||||
|
--usernames <path-to-file> Only brute force the usernames from the file (which need to have a newline at the end).
|
||||||
|
|
||||||
--cache-ttl <cache-ttl> Typhoeus cache TTL.
|
--cache-ttl <cache-ttl> Typhoeus cache TTL.
|
||||||
|
|
||||||
--request-timeout <request-timeout> Request Timeout.
|
--request-timeout <request-timeout> Request Timeout.
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ def help
|
|||||||
puts ' If no protocol is given (format host:port), HTTP will be used.'
|
puts ' If no protocol is given (format host:port), HTTP will be used.'
|
||||||
puts '--proxy-auth <username:password> Supply the proxy login credentials.'
|
puts '--proxy-auth <username:password> Supply the proxy login credentials.'
|
||||||
puts '--basic-auth <username:password> Set the HTTP Basic authentication.'
|
puts '--basic-auth <username:password> Set the HTTP Basic authentication.'
|
||||||
puts '--wordlist | -w <wordlist> Supply a wordlist (with a newline at the end) for the password bruter and do the brute force.'
|
puts '--wordlist | -w <wordlist> Supply a wordlist (with a newline at the end) for the password brute forcer.'
|
||||||
puts '--username | -U <username> Only brute force the supplied username.'
|
puts '--username | -U <username> Only brute force the supplied username.'
|
||||||
puts '--usernames <path-to-file> Only brute force the usernames from the file (which need to have a newline at the end).'
|
puts '--usernames <path-to-file> Only brute force the usernames from the file (which need to have a newline at the end).'
|
||||||
puts '--threads | -t <number of threads> The number of threads to use when multi-threading requests.'
|
puts '--threads | -t <number of threads> The number of threads to use when multi-threading requests.'
|
||||||
|
|||||||
Reference in New Issue
Block a user