Skip to content

Instantly share code, notes, and snippets.

@Patrick-Kelley
Last active December 18, 2015 00:20
Show Gist options
  • Save Patrick-Kelley/41d3515ea8486aad764c to your computer and use it in GitHub Desktop.
Save Patrick-Kelley/41d3515ea8486aad764c to your computer and use it in GitHub Desktop.
TAP Installation Script
echo "Beginning Installation"
apt-get update
apt-get -y upgrade
apt-get install -y vim
echo "Installing Iodine for DNS Tunnel"
apt-get -y install iodine
echo "Installing Git for Repo Downloading"
apt-get -y install git
echo "Installing TAP Prerequisites"
apt-get -y install python-pexpect
apt-get -y install python-crypto
echo "Generating SSH Keys"
ssh-keygen
cd /opt
git clone https://github.com/PaulSec/twittor.git
cd twittor
pip install -r requirements.txt
cd /opt
git clone https://github.com/trustedsec/tap.git
echo "Installing TAP. Please follow the continuing prompts"
cd /opt/tap && python setup.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment