Using any SDK function in .NET causes deadlock on "Saving..."
Posted: Sat Aug 03, 2019 3:05 pm
Seems that using any sort of SDK functionality in .NET VMProtect causes a deadlock on the "Saving..." phase (stuck at 0%)
https://i.vgy.me/AO66Z3.png
Example code:
Example program (just compiled from above):
https://anonfile.com/T5p4ff23nf/VMPNetTesting_exe
If you need my SDK DLL you can DM/email me.
https://i.vgy.me/AO66Z3.png
Example code:
Code: Select all
public class VMPTest
{
[BeginVirtualization]
public static void Main(string[] args)
{
if (SDK.IsDebuggerPresent(true))
{
Console.WriteLine("Debugger detected!");
Console.ReadLine();
}
else
{
Console.WriteLine("Debugger not detected!");
Console.ReadLine();
}
}
}
https://anonfile.com/T5p4ff23nf/VMPNetTesting_exe
If you need my SDK DLL you can DM/email me.