Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Last active July 3, 2020 10:20
Show Gist options
  • Save velotiotech/9a1770d6994f50f52485f9797d59ef25 to your computer and use it in GitHub Desktop.
Save velotiotech/9a1770d6994f50f52485f9797d59ef25 to your computer and use it in GitHub Desktop.
#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