Remove text file

This commit is contained in:
Yorick Barbanneau 2023-03-30 02:09:19 +02:00
parent b818407fd0
commit 3f4082f4c7

View file

@ -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;
}