
Search found 17 matches
- Mon Aug 22, 2022 1:20 pm
- Forum: Technical questions
- Topic: VMProtect Lite Linux Version compile Error.
- Replies: 10
- Views: 4287
Re: VMProtect Lite Linux Version compile Error.
Sorry to forget to tell you, my test program is x86, not x64. 

- Mon Aug 22, 2022 10:16 am
- Forum: Technical questions
- Topic: VMProtect Lite Linux Version compile Error.
- Replies: 10
- Views: 4287
Re: VMProtect Lite Linux Version compile Error.
Yes, I use default setting.
I run ldd nxpmgr.exe,it seems that no libSM.6.so required.
I run ldd nxpmgr.exe,it seems that no libSM.6.so required.
- Mon Aug 22, 2022 9:09 am
- Forum: Technical questions
- Topic: VMProtect Lite Linux Version compile Error.
- Replies: 10
- Views: 4287
Re: VMProtect Lite Linux Version compile Error.
try to test with nxpmgr.exe in the attached files.
- Mon Aug 22, 2022 2:46 am
- Forum: Technical questions
- Topic: VMProtect Lite Linux Version compile Error.
- Replies: 10
- Views: 4287
Re: VMProtect Lite Linux Version compile Error.
Thanks. I have tested this new version in my site. 1. Now, No "Invalid command address" compile error message found. 2. I pack the console application with VMP, and it run well after packed. 3. I pack the GUI application, such as with Qt GUI, it always report runtime error. event I have do...
- Fri Aug 19, 2022 8:35 am
- Forum: Technical questions
- Topic: VMProtect Lite Linux Version compile Error.
- Replies: 10
- Views: 4287
Re: VMProtect Lite Linux Version compile Error.
OK,I attached my testing file here.
- Thu Aug 18, 2022 1:24 pm
- Forum: Technical questions
- Topic: VMProtect Lite Linux Version compile Error.
- Replies: 10
- Views: 4287
VMProtect Lite Linux Version compile Error.
Just got the VMProtect Lite for Linux and Test with my program Option sestting for VMProtect: Memory Protection: YES Pack the output file: YES 1. open one x86 elf file produced by FPC, compile fail, the log says: "Invalid Commnad Address" 2. open x64 elf file produced by FPC, the same fail...
- Mon Nov 04, 2013 3:01 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
I have one idea. You need: 1. Compile your application with Delphi (use VMProtectSDK as VMProtectSDK32.dll) 2. Protect your application with VMProtect 3. Hack your application with your tool (change image type to NATIVE, remove resource directory, remove unused imports, etc.) What do you think? I h...
- Fri Nov 01, 2013 6:36 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
Sorry to give you so much trouble. Maybe you can check the purchase order, we have got this product half an year ago, and Win32 App, Drivers we only take 3 days to complete with the VMProtect, and it's perfect. only this native program we have try lots of way, can not solve it. Our product developed...
- Fri Nov 01, 2013 6:19 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
I change VMProtectSDK32.pas as following: const {$IFDEF WIN64} //VMProtectDLLName = 'VMProtectSDK64.dll'; VMProtectDLLName = 'VMProtectDDK64.sys'; {$ELSE} //VMProtectDLLName = 'VMProtectSDK32.dll'; VMProtectDLLName = 'VMProtectDDK32.sys'; {$ENDIF} then compile with Delphi, and it's running OK, then ...
- Fri Nov 01, 2013 5:15 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
I change the VMProtectSDK32.dll to VMProtectDDK32.sys, but it still can not detect the mark. I think I can try another way, that is my program directly compile with obj of VMProtectDDK32?? but I need OMF format lib or obj files, because Delphi only can use OMF format. is it Ok? can you send me OMF f...
- Fri Nov 01, 2013 4:34 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
1. VMProtect checks the type of application at loading: IMAGE_SUBSYSTEM_NATIVE - detects as a driver IMAGE_SUBSYSTEM_WINDOWS_GUI, IMAGE_SUBSYSTEM_WINDOWS_CUI: detects as DLL(if characterictics has IMAGE_FILE_DLL), otherwise as EXE 2. If VMProtect detected application as a driver - VMProtect is look...
- Fri Nov 01, 2013 2:32 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
I maybe found the problem now: if I use VMProtectSDK.pas and it will import kernel32.dll, when I change the program to native by wipe off un-used Import Blocked, only keep ntdll/VMProtectSDK32, it will can not found the Mark I add by VMProtectBeginXXX/VMProtectEnd. if I keep ntdll/VMProtectSDK32/Ker...
- Thu Oct 31, 2013 8:34 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
(1) I use VMProtectSDK.pas in my project, and I add VMProtectBeginMutation/VMProtectEnd. (2) Compile with Delphi to generate the win32 exe, because Delphi can not directly compile the subsystem = native program. (3) then I remove the other import block, only keep ntdll.dll and VMProtectSDK32.dll (4)...
- Thu Oct 31, 2013 7:33 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
In Option Setting, Level I will select "Maximum speed", No Memory /Import protection, no pack output file. Other setting I will keep default.
- Thu Oct 31, 2013 7:05 am
- Forum: Technical questions
- Topic: Does VMProtect support native progream?
- Replies: 19
- Views: 22617
Re: Does VMProtect support native progream?
I want to protect some key codes, so Mutation or Virtualization both OK for me.