Skip to content

Instantly share code, notes, and snippets.

@eduherraiz
Created January 28, 2015 23:39
Show Gist options
  • Save eduherraiz/3d4be2cf108e59f77a12 to your computer and use it in GitHub Desktop.
Save eduherraiz/3d4be2cf108e59f77a12 to your computer and use it in GitHub Desktop.
GHOST upgrade libc6 ubuntu 11.10
#!/bin/bash
# Upgrade libc6 for security problem GHOST on ubuntu 11.10
# We are using the ubuntu packages from the 12.04 and installing by hand
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc-bin_2.15-0ubuntu10.10_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.15-0ubuntu10.10_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc-dev-bin_2.15-0ubuntu10.10_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6-dev_2.15-0ubuntu10.10_amd64.deb
dpkg -i libc-bin_2.15-0ubuntu10.10_amd64.deb
dpkg -i libc6_2.15-0ubuntu10.10_amd64.deb
dpkg -i libc-dev-bin_2.15-0ubuntu10.10_amd64.deb
dpkg -i libc6-dev_2.15-0ubuntu10.10_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment