我在使用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:
~ $ 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>发布于 2021-02-28 08:22:49
termux已经删除了metasploit和九头蛇包https://wiki.termux.com/wiki/FAQ#Where_are_Metasploit_and_Hydra_packages
发布于 2021-03-03 22:29:01
你需要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。
https://stackoverflow.com/questions/66399725
复制相似问题