ubuntu20.04安装wpscan
摘要:最近在ubuntu20.04上安装wpscan,遇到了很偶然的问题,记录一下
(1)更新ubuntu软件库索引
apt update
(2)安装 Ruby 和其所需的依赖项
apt install ruby-full
(3)安装wpscan
gem install wpscan
这个时候会出现 package configuration for libffi is not found ,这个时候运行 apt-get install libffi-dev 安装 libffi-dev 库以及 apt-get install build-essential 更新 build-essential 软件包即可。
解决办法参考自:
https://github.com/travis-ci/travis.rb/issues/512
https://github.com/Shopify/shopify-cli/issues/1857
(4)打印wpscan版本
wpscan --version
(5)使用wpscan进行扫描
wpscan --url target_url -e vp --api-token your_api_token
将 tartget_url 和 your_api_token 更换为目标网站和你的 your_api_token 即可。
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。