Last active
July 3, 2020 10:20
-
-
Save velotiotech/9a1770d6994f50f52485f9797d59ef25 to your computer and use it in GitHub Desktop.
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
#Dockerfile | |
FROM ubuntu:precise-20160303 | |
#Install WGet | |
RUN apt-get update | |
RUN apt-get -f install | |
RUN apt-get install -y wget | |
#Install an OpenSSL vulnerable to Heartbleed (CVE-2014-0160) | |
RUN wget --no-check-certificate https://launchpad.net/~ubuntu-security/+archive/ubuntu/ppa/+build/5436462/+files/openssl_1.0.1-4ubuntu5.11_amd64.deb | |
RUN dpkg -i openssl_1.0.1-4ubuntu5.11_amd64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment