【问题标题】:Error with ruby version on termux when I try to install metasploit当我尝试安装 metasploit 时,termux 上的 ruby​​ 版本出错
【发布时间】:2021-05-29 15:43:25
【问题描述】:

我正在使用 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>

【问题讨论】:

  • 请发布实际的控制台输出,而不是图像。

标签: ruby security console metasploit termux


【解决方案1】:

您需要 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”来安装缺少的 gem(你应该在 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。

【讨论】:

    【解决方案2】:

    【讨论】:

      猜你喜欢
      • 2022-11-10
      • 2014-01-02
      • 2018-04-16
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多