我最近升级了metasploit框架,在完成之后,当我尝试启动它时,我会得到下一个错误:
msfconsole
Unable to find a spec satisfying metasploit-framework (>= 0) in the set. Perhaps the lockfile is corrupted?
Run bundle install to install missing gems.我已经失去了它,重新安装,但问题仍在继续。有什么建议吗?
发布于 2021-01-29 02:14:02
最后对我起作用的是更新我的bundler,然后运行bundle安装:
/usr/share/metasploit-framework$ sudo gem install bundler:2.2.5
/usr/share/metasploit-framework$ sudo bundle install发布于 2021-01-31 17:02:52
对我来说也是如此。但我的解决方案更容易。我有一段时间没有碰卡利,所以我做了所有的升级,然后我开始进入"sudo“。因此,当我启动msf控制台时,我会得到完全相同的错误消息。输入“退出”离开根,然后重试..。为我工作过。
发布于 2021-01-31 17:48:26
在做sudo apt upgrade之后,我也遇到了同样的问题。
为了解决这个问题,我不得不做sudo apt update && sudo apt full-upgrade -y。
我从这里得到了这个解决方案,https://www.reddit.com/r/Kalilinux/comments/l4zi6i/hey_everyone/
https://stackoverflow.com/questions/65941317
复制相似问题