Execute binary from memory in C# .net with binary protected from a 3rd party software
- by NoobTom
i've the following scenario:
i've a C# application.exe
i pack application.exe inside TheMida, a software
anti-piracy/reverse engineering.
i encrypt application.exe with aes256. (i wrote my own aes
encryption/decryption and it is working)
Now, when i want to execute my application i do the following:
decrypt application.exe in memory
execute…