Search found 3 matches

by mal
Sun Feb 19, 2017 12:16 pm
Forum: Technical questions
Topic: Anti Dump
Replies: 5
Views: 6568

Re: Anti Dump

Oh i think i miswrite. What i mean is lets say i mutate a block. Now i looked it in ida and in fact the assembly changes. However if i run my program will the assembly go back to the original non-mutated code or the mutated code? Example: Original: Push Mov Cmp Jmp Mutated Cmp Call Jmp Now in memory...
by mal
Sun Feb 19, 2017 10:19 am
Forum: Technical questions
Topic: Anti Dump
Replies: 5
Views: 6568

Re: Anti Dump

alright. One more question and Mutation and Virtualization. Example: VMProtectBeginMutation("Hi); if("check" = "check") std::cout << "hi"; VmProtectEnd(); So does the mutation part is also on the memory present or just compile-time? So if i run my program will it m...
by mal
Sat Feb 18, 2017 11:05 pm
Forum: Technical questions
Topic: Anti Dump
Replies: 5
Views: 6568

Anti Dump

So, i just got used to the sdk. But i am worrying are there any good methods to protect from people dumping my software from memory? Also i am using VMProtectBeginUltra for areas where i communicate with my server. However important strings can be seen if someone decides to dump my client. What can ...