Updated install instructions to use bundler.
This commit is contained in:
1
Gemfile
1
Gemfile
@@ -3,5 +3,6 @@ source "https://rubygems.org"
|
|||||||
gem "typhoeus", "0.4.2"
|
gem "typhoeus", "0.4.2"
|
||||||
gem "rspec", :require => "spec"
|
gem "rspec", :require => "spec"
|
||||||
gem "nokogiri"
|
gem "nokogiri"
|
||||||
|
gem "json"
|
||||||
gem "webmock"
|
gem "webmock"
|
||||||
gem "simplecov"
|
gem "simplecov"
|
||||||
|
|||||||
13
README
13
README
@@ -35,30 +35,25 @@ WPScan comes pre-installed on BackTrack5 R1 in the /pentest/web/wpscan directory
|
|||||||
-> Installing on Backtrack5 Gnome/KDE 32bit :
|
-> Installing on Backtrack5 Gnome/KDE 32bit :
|
||||||
|
|
||||||
sudo apt-get install libcurl4-gnutls-dev libxml2 libxml2-dev libxslt1-dev
|
sudo apt-get install libcurl4-gnutls-dev libxml2 libxml2-dev libxslt1-dev
|
||||||
sudo gem install --user-install mime-types typhoeus nokogiri json
|
sudo gem install bundler && bundle install
|
||||||
|
|
||||||
|
|
||||||
-> Installing on Debian/Ubuntu :
|
-> Installing on Debian/Ubuntu :
|
||||||
|
|
||||||
sudo apt-get install libcurl4-gnutls-dev libopenssl-ruby libxml2 libxml2-dev libxslt1-dev
|
sudo apt-get install libcurl4-gnutls-dev libopenssl-ruby libxml2 libxml2-dev libxslt1-dev
|
||||||
sudo gem install typhoeus nokogiri json
|
sudo gem install bundler && bundle install
|
||||||
|
|
||||||
|
|
||||||
-> Installing on other nix : (not tested)
|
-> Installing on other nix : (not tested)
|
||||||
|
|
||||||
sudo gem install typhoeus nokogiri json
|
sudo gem install bundler && bundle install
|
||||||
|
|
||||||
|
|
||||||
-> Installing on Windows : (not tested)
|
-> Installing on Windows : (not tested)
|
||||||
|
|
||||||
gem install typhoeus ("Windows is not officially supported")
|
gem install typhoeus ("Windows is not officially supported")
|
||||||
gem install nokogiri json
|
gem install nokogiri json
|
||||||
|
|
||||||
|
|
||||||
-> Installing on Mac OSX :
|
-> Installing on Mac OSX :
|
||||||
|
|
||||||
sudo gem install typhoeus nokogiri json
|
sudo gem install bundler && bundle install
|
||||||
|
|
||||||
|
|
||||||
==KNOWN ISSUES==
|
==KNOWN ISSUES==
|
||||||
|
|
||||||
|
|||||||
@@ -35,15 +35,15 @@ WPScan only supports Ruby => 1.9.
|
|||||||
|
|
||||||
```sudo apt-get install libcurl4-gnutls-dev libopenssl-ruby libxml2 libxml2-dev libxslt1-dev```
|
```sudo apt-get install libcurl4-gnutls-dev libopenssl-ruby libxml2 libxml2-dev libxslt1-dev```
|
||||||
|
|
||||||
``` sudo gem install typhoeus nokogiri json```
|
```sudo gem install bundler && bundle install```
|
||||||
|
|
||||||
*Installing on other nix:* (not tested)
|
*Installing on other nix:* (not tested)
|
||||||
|
|
||||||
```sudo gem install typhoeus nokogiri json```
|
```sudo gem install bundler && bundle install```
|
||||||
|
|
||||||
*Installing on Mac OSX:*
|
*Installing on Mac OSX:*
|
||||||
|
|
||||||
```sudo gem install typhoeus nokogiri json```
|
```sudo gem install bundler && bundle install```
|
||||||
|
|
||||||
#### KNOWN ISSUES
|
#### KNOWN ISSUES
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user