CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/tools/modules/aws-aggregator-userdata.sh
Views: 1904
1
#!/bin/bash -ex
2
3
yum -y install ruby23 git
4
update-alternatives --set ruby /usr/bin/ruby2.3
5
git clone https://github.com/rapid7/metasploit-aggregator.git
6
cd metasploit-aggregator/ruby
7
gem install bundler
8
bundle
9
screen -d -m ruby -Ilib ./bin/metasploit-aggregator
10
11