Kernel Exploits
What is a kernel

How to privesc via kernel exploit
Enumerate
uname -aorcat /etc/lsb-releaseWe can then google the version we get and see if anything comes out
We can also use Linux exploit suggester and investigate the results
Dirty Cow
We can use this exploit
gcc -pthread cow.c -o cow -lcryptWe are a low privilege user for now

./cow
passwdshould let us be root
Last updated