2 problem about the cli dll

Issues related to VMProtect
Post Reply
Dnn
Posts: 3
Joined: Thu Mar 24, 2022 7:09 pm

2 problem about the cli dll

Post by Dnn »

[1]the uIntptr constructor could not be found after compilation

[2] only compile il part , the native part need load VMProtectSDK64.dll
Attachments
problem.zip
(586.43 KiB) Downloaded 81 times
Admin
Site Admin
Posts: 2566
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: 2 problem about the cli dll

Post by Admin »

1. Fixed in the 1451 build
2. VMProtect doesn't process native code/native imports from VMProtectSDK64.dll for mixed .NET applications.
Dnn
Posts: 3
Joined: Thu Mar 24, 2022 7:09 pm

Re: 2 problem about the cli dll

Post by Dnn »

Admin wrote:1. Fixed in the 1451 build
2. VMProtect doesn't process native code/native imports from VMProtectSDK64.dll for mixed .NET applications.

After testing, problem 1 is not completely fixed

In the demo, openprocess to the Calculator.exe
u can run a calculator.exe process before testing

Code: Select all

		[VMProtect::BeginUltra]
		UIntPtr^ Testor::OpenProcessCLI(DWORD pid)//Calculator pid
		{
		
			return  gcnew UIntPtr(Native::VMPOpenProcess(pid));//complete after:VMPOpenProcess result has value but uintptr ctor func not set value
		}
simple demo code maybe you need
CLITest.zip
(2.77 MiB) Downloaded 67 times
Post Reply