当我尝试安装 metasploit 时,termux 上的 ruby​​ 版本出错

问题描述

我正在用 termux 安装 metasploit,它说: termux output

~ $ ls <br>
metasploit-framework  storage  wiki-termux<br>
~ $ cd metasploit-framework<br>
~/metasploit-framework $ ruby msfconsole<br>
Could not find Ascii85-1.1.0 in any of the sources<br>
Run bundle install to install missing gems.<br>
~/metasploit-framework $ bundle install<br>
Fetching gem metadata from https://rubygems.org/.........<br>
pcaprub-0.13.0 requires ruby version ~> 2.0,which is incompatible with the<br>
current version,ruby 3.0.0p0<br>

如果我尝试直接安装 metaploit:

termux output

~ $ ls
metasploit-framework  storage  wiki-termux <br>
~ $ cd metasploit-framework <br>
~/metasploit-framework $ msfconsole <br>
The program msfconsole is not installed. Install it by executing: <br>
 pkg install metasploit <br>
~/metasploit-framework $ pkg install metasploit <br>
Checking availability of current mirror: ok <br>
Get:2  https://ipfs.io/ipns/k51qzi5uqu5dj05z8mr958kwvrg7a0wqouj5nnoo5uqu1btnsljvpznfaav9nk unstable InRelease [14.0 kB]<br>
Get:3 https://ipfs.io/ipns/k51qzi5uqu5dgu3homski160l4t4bmp52vb6dbgxb5bda90rewnwg64wnkwxj4 x11 InRelease [14.0 kB]<br>
Get:1 https://10.via0.com/ipns/k51qzi5uqu5dg9vawh923wejqffxiu9bhqlze5f508msk0h7ylpac27fdgaskx stable InRelease<br>
Hit:4 https://grimler.se/game-packages-24 games InRelease <br>
Hit:5 https://grimler.se/science-packages-24 science InRelease <br>
Fetched 42.0 kB in 4s (10.9 kB/s) <br>
Reading package lists... Done <br>
Building dependency tree... Done <br>
Reading state information... Done <br>
All packages are up to date. <br>
Reading package lists... Done <br>
Building dependency tree... Done <br>
Reading state information... Done <br>
E: Unable to locate package metasploit <br>

解决方法

termux 已经删除了 metasploit 和 hydra 包 https://wiki.termux.com/wiki/FAQ#Where_are_Metasploit_and_Hydra_packages

,

您需要 Termuxblack 来安装 Ruby2。

首先安装 wget:

pkg install wget

现在获取 Termuxblack install.sh:

wget https://github.com/Hax4us/TermuxBlack/raw/master/install.sh

然后输入

sh install.sh

现在您可以安装 Ruby2:

apt update && apt remove ruby && apt install ruby2

现在输入“bundler install”来安装缺少的 gems(你应该在 metasploit-framework/ 目录中。)

然后你可以使用 ./msfconsole 或 ./msfvenom

如果你想创建快捷方式:

nano /usr/etc/profile.d/bash_aliases.sh

然后输入代码:

alias msfconsole='/$HOME/path to metasploit/msfconsole' alias msfvenom='/$HOME/path to metasploit/msfvenom'

现在您可以使用 msfconsole 或 msfvenom。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...