Search found 2 matches
- Wed Nov 24, 2021 6:39 am
- Forum: Technical questions
- Topic: Are nested functions obfuscated?
- Replies: 4
- Views: 4421
Re: Are nested functions obfuscated?
Fun_1,Fun_2,Fun_3,these three functions are not using markers or MAP-file. The problem is: After compilation in VMProtect,the code between VMProtectBeginVirtualization("main") and VMProtectEnd()in the Main like "int i = 3+2+1;" will be virtualized,but what about call to "Fu...
- Fri Aug 13, 2021 1:46 pm
- Forum: Technical questions
- Topic: Are nested functions obfuscated?
- Replies: 4
- Views: 4421
Re: Are nested functions obfuscated?
Do you mean nested functions in .NET application? I don't quite understand this problem either. If there are three functions like these: void Fun_3() { int a= 3+3; Fun_2(); } void Fun_2() { int a= 2+2; Fun_2(); } void Fun_1() { int a= 1+1; Fun_2(); } int Main() { VMProtectBeginVirtualization("...