0
How Can You Modify MorphAES?
Hey. How would one modify morphAES to take code other than shellcode? (Something like C code, or any Windows executable) https://github.com/cryptolok/MorphAES
1 Answer
0
For Windows, you will have to modify all the instructions since, the opcodes and syscalls are different from Linux to Windows.
An opcode can be encoded (that's the purpose), but for an arbitrary code, you wont do it easily because, stack pointers, state registries, etc, even I don't really know how it can be done easily without breaking the execution flow and the encoding routine...