Skip to content

Instantly share code, notes, and snippets.

@int0x33
Created January 29, 2019 18:15
Show Gist options
  • Select an option

  • Save int0x33/027c8fd7811f42b46c244d826df3a234 to your computer and use it in GitHub Desktop.

Select an option

Save int0x33/027c8fd7811f42b46c244d826df3a234 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
setresuid(996, 996, 996);
setresgid(996, 996, 996);
system( "/bin/bash" );
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment