0

I'm really starting to have a headache. This makes the hours I try to settle my problem without success ...

So I go to this directory : cd /opt/metasploit/apps/pro/msf3/tools. Ans ./pattern_create.rb 20 and unfortunately :

Could not find rake-10.0.4 in any of the sources Run bundle install to install missing gems.

I tried to install but each time the error returns: sudo gem install bundler and sudo gem install rake

thank you very much ;)

newuser
  • 67
  • 3
  • 8

3 Answers3

1

I also faced the same problem,

Try this, it worked for me.

/opt/metasploit/ruby/bin/ruby pattern_create.rb 2000
AJ.
  • 4,526
  • 5
  • 29
  • 41
0

You need to run sudo gem install bundler and sudo gem install rake.

Mathuin
  • 790
  • 1
  • 6
  • 13
0

You should run sudo gem install rake --version "10.0.4". This will install the version needed for your version of metasploit. Running sudo gem install rake will install the lastest version of the "gem".

mzotea
  • 1