Skip to content

Instantly share code, notes, and snippets.

@Lerie82
Last active June 17, 2019 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lerie82/c1bceacc737798276b5fbdb8aec8d430 to your computer and use it in GitHub Desktop.
Save Lerie82/c1bceacc737798276b5fbdb8aec8d430 to your computer and use it in GitHub Desktop.
install metasploit and kail on chromebook
#installing kali (optional)
sudo umount /dev/sdb1
sudo mkfs.ext4 /dev/sdb1
wget https://goo.gl/fd3zc -o crouton
cd ~/Downloads
sudo sh crouton -r kali -t core,cli-extra -p /media/removable/USB\ Drive/
sudo sh /media/removable/USB\ Drive/bin/enter-chroot
#installing metasploit
sudo apt-get -y install \
build-essential zlib1g zlib1g-dev \
libxml2 libxml2-dev libxslt-dev locate \
libreadline6-dev libcurl4-openssl-dev git-core \
libssl-dev libyaml-dev openssl autoconf libtool \
ncurses-dev bison curl wget postgresql \
postgresql-contrib libpq-dev \
libapr1 libaprutil1 libsvn1 \
libpcap-dev libsqlite3-dev
\curl -L https://get.rvm.io | bash -s stable --autolibs=enabled --ruby=2.1.5
gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3
source ~/.rvm/scripts/rvm
git clone https://github.com/rapid7/metasploit-framework.git msf3
sudo mv msf3 /opt/
cd /opt/msf3
gem install bundler
bundle install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment