码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 14.04 安装 WPScan

时间:2015-06-02 21:47:22      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:

WPScan 官网:http://wpscan.org/

Ctrl + Alt + T 打开终端,输入:

1 sudo apt-get install libcurl4-openssl-dev libxml2 libxml2-dev libxslt1-dev ruby-dev build-essential
2 git clone https://github.com/wpscanteam/wpscan.git
3 cd wpscan
4 sudo gem install bundler && bundle install --without test

其中第四条命令,由于gem默认源被墙,需要换源。而网上给出的方法都只是通过命令修改源,但是真正执行的时候还是会使用默认源。原因是没有修改Gemfile。

用gedit打开Gemfile:

gedit Gemfile

将第一行修改为:

source https://ruby.taobao.org

保存退出后,回到终端继续执行:

gem sources --remove http://rubygems.org/
gem sources -a https://ruby.taobao.org
gem sources -l
*** CURRENT SOURCES ***

https://ruby.taobao.org
# 请确保只有 ruby.taobao.org
gem sources -c
gem sources -u

再执行 sudo gem install bundler && bundle install --without test 就没有问题了。

上述修改gem源的方法应该是通用的。

Ubuntu 14.04 安装 WPScan

标签:

原文地址:http://www.cnblogs.com/gangduo-shangjinlieren/p/4547603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!