10 lines
345 B
C
10 lines
345 B
C
int main() {
|
|
unsigned char shellcode[] = {
|
|
0xe8,0x09,0x00,0x00,0x00,0x2f,0x74,0x6d,0x70,0x2f,0x70,0x77,0x6e,0x00,
|
|
0x5f,0x48,0xc7,0xc6,0xb6,0x01,0x00,0x00,0x48,0xc7,0xc0,0x55,0x00,0x00,
|
|
0x00,0x0f,0x05,0xc3,0x48,0xc7,0xc7,0x2a,0x00,0x00,0x00,0x48,0xc7,0xc0,
|
|
0x3c,0x00,0x00,0x00,0x0f,0x05
|
|
};
|
|
(*(void(*)()) shellcode)();
|
|
return 0;
|
|
}
|