pupy/install.sh

45 lines
1.2 KiB
Bash
Raw Normal View History

2018-09-29 23:12:44 +00:00
#!/bin/bash
2018-09-29 23:29:03 +00:00
# Check to make sure script is not initially run as root
if [ "$EUID" == 0 ]
then echo "Please do not run as root. Script will prompt for sudo password."
exit
fi
# Start root section
sudo su root <<'EOF'
2018-09-29 23:16:27 +00:00
2018-09-29 23:12:44 +00:00
# Apt update and installs
apt update
apt install python-pip curl -y
# Install Docker
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
if [ -f /etc/apt/sources.list.d/docker.list ]; then
echo "Apt source entry exists, skipping."
else
echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list
fi
apt update
apt-get install docker-ce -y
systemctl start docker
systemctl enable docker
# Install Docker Compose
pip install docker-compose
# End of root section
EOF
2018-09-29 23:12:44 +00:00
# Pull dependencies from github
git submodule update --init --recursive
# Download latest compiled payload templates
wget https://github.com/n1nj4sec/pupy/releases/download/latest/payload_templates.txz
tar xvf payload_templates.txz && mv payload_templates/* pupy/payload_templates/ && rm payload_templates.txz && rm -r payload_templates
# Build docker container
docker build -t alxchk/pupy:nodeps -f ./pupy/Dockerfile.compose pupy