Skip to content

Instantly share code, notes, and snippets.

@SafeEval
Last active August 29, 2015 14:28
Show Gist options
  • Save SafeEval/bb11ca212d9371d259db to your computer and use it in GitHub Desktop.
Save SafeEval/bb11ca212d9371d259db to your computer and use it in GitHub Desktop.
// exit_x86-linux.c - exit() x86 linux shellcode.
char sc[] = "\x31\xc0\x31\xdb\xb3\x2a\xb0\x01\xcd\x80";
int main()
{
int (*func)();
func = (int (*)()) sc;
(int)(*func)();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment