2017-03-18 21:50:19 -07:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
2017-03-24 22:33:04 -07:00
|
|
|
yum -y install ruby23 git
|
2017-03-18 21:50:19 -07:00
|
|
|
update-alternatives --set ruby /usr/bin/ruby2.3
|
2017-03-24 22:33:04 -07:00
|
|
|
git clone https://github.com/rapid7/metasploit-aggregator.git
|
|
|
|
|
cd metasploit-aggregator/ruby
|
2017-03-18 21:50:19 -07:00
|
|
|
gem install bundler
|
2017-03-24 22:33:04 -07:00
|
|
|
bundle
|
|
|
|
|
screen -d -m ruby -Ilib ./bin/metasploit-aggregator
|