Skip to content

Instantly share code, notes, and snippets.

/sh.c

Created January 20, 2017 05:17
Show Gist options
  • Save anonymous/afb833785caea3f14351180a91bf2561 to your computer and use it in GitHub Desktop.
Save anonymous/afb833785caea3f14351180a91bf2561 to your computer and use it in GitHub Desktop.
#include <stdio.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