Search found 18 matches

by jokehuang
Thu May 18, 2023 9:52 pm
Forum: Technical questions
Topic: "Save Project As" does not contains RSA keys pair
Replies: 1
Views: 4048

"Save Project As" does not contains RSA keys pair

When I click "save project as" to save the `.vmp` file to other folder rather than beside the `.exe`, the `.vmp` file does not contains RSA keys pair.
by jokehuang
Fri Jan 13, 2023 11:42 pm
Forum: Technical questions
Topic: does VMProtect support HVCI?
Replies: 1
Views: 5817

Re: does VMProtect support HVCI?

At least 3.4.0 is not support. I had test if no VMP protected loading my driver, the core Integrity can be enabled; Otherwise, it can't.
by jokehuang
Fri Jan 13, 2023 10:26 pm
Forum: Purchasing or Upgrading
Topic: Can I transfer my VMProtect license to another machine?
Replies: 1
Views: 2090

Can I transfer my VMProtect license to another machine?

I had purchase a VMProtect Ultimate before, if I buy a new machine or my machine broken, can I transfer my VMProtect license?
by jokehuang
Sun Jun 16, 2019 11:39 pm
Forum: Technical questions
Topic: Every time Hyper-V is enable/disable cause the hwid changes (Ethernet)
Replies: 0
Views: 9714

Every time Hyper-V is enable/disable cause the hwid changes (Ethernet)

Every time enable/disable Hyper-V, will cause hwid changes. (generat new Ethernets).

It means your customer able to trial permanent your hardware-lock trial version.

Additional information: My system installed VMWare and Hyper-V, so you can see multiple ethernets.
QQ图片20190617073236.png
QQ图片20190617073236.png (15.85 KiB) Viewed 9714 times
by jokehuang
Sun Jun 16, 2019 10:46 pm
Forum: Technical questions
Topic: Hardware identifier feature - useless
Replies: 11
Views: 17406

Re: Hardware identifier feature - useless

Maybe same problem to me.
If you enable/disable Hyper-V and restart, the hwid will change.
by jokehuang
Sat May 18, 2019 10:49 am
Forum: Technical questions
Topic: Can not create serial number: Serial number is too long
Replies: 4
Views: 4484

Re: Can not create serial number: Serial number is too long

I think I've figured out that a 2048-bit key can only encrypt up to 256 bytes of data.

After subtracting 11 bytes of nMinPadding, the remaining 245 bytes are available.
by jokehuang
Sat May 18, 2019 10:47 am
Forum: Technical questions
Topic: Can not create serial number: Serial number is too long
Replies: 4
Views: 4484

Re: Can not create serial number: Serial number is too long

Admin wrote:What RSA key length do you use?
2048 bits
by jokehuang
Fri May 17, 2019 8:37 pm
Forum: Technical questions
Topic: Can not create serial number: Serial number is too long
Replies: 4
Views: 4484

Can not create serial number: Serial number is too long

As image, I can't add a Custom Name that it's length 255 to the license.
by jokehuang
Wed May 15, 2019 6:56 pm
Forum: Technical questions
Topic: .Net KeyGen "Hardware ID is too long" exception, is it a bug ?
Replies: 1
Views: 2669

.Net KeyGen "Hardware ID is too long" exception, is it a bug ?

public String HardwareID { get { return strHardwareID; } set { if (value != null) { byte[] b = Convert.FromBase64String(value); if (b.Length == 0) throw new ArgumentException("Hardware ID has zero length, use 'null' instead"); if (b.Length > 32) throw new ArgumentException("Hardware I...
by jokehuang
Sat Apr 27, 2019 11:45 am
Forum: Technical questions
Topic: Does HWID have a maximum length?
Replies: 3
Views: 3653

Re: Does HWID have a maximum length?

And does license have a maximum length ?
by jokehuang
Sat Apr 27, 2019 6:56 am
Forum: Technical questions
Topic: Does HWID have a maximum length?
Replies: 3
Views: 3653

Does HWID have a maximum length?

In some scenarios, I need to know its size in advance to set up storage buffers, such as database fields.
by jokehuang
Thu Apr 25, 2019 7:55 am
Forum: Technical questions
Topic: Has anyone tried to use the Activation API in the driver(.sys) ?
Replies: 7
Views: 5952

Re: Has anyone tried to use the Activation API in the driver(.sys) ?

1. Driver generate the "text block" then return to user-mode app via DeviceIoControl. 2. User-mode app sends the "text block" to WebLM offline activation. (I never try WebLM offline activation now, does it return a serial number to user for next step ?) Just use activation APIs ...
by jokehuang
Thu Apr 25, 2019 6:30 am
Forum: Technical questions
Topic: Has anyone tried to use the Activation API in the driver(.sys) ?
Replies: 7
Views: 5952

Re: Has anyone tried to use the Activation API in the driver(.sys) ?

Explain further why I insist on checking the serial number in the driver, since I don't know much about the field of software security, if there are any mistakes, please correct them. 1. Because user-mode applications can run without digital signatures, it can be modified and still run. So I think e...
by jokehuang
Thu Apr 25, 2019 6:13 am
Forum: Technical questions
Topic: Has anyone tried to use the Activation API in the driver(.sys) ?
Replies: 7
Views: 5952

Re: Has anyone tried to use the Activation API in the driver(.sys) ?

You can make an user-mode activator for your driver. I don't see any problem in this. Does the Offline Activate APIs works in driver ? My idea: 1. Driver generate the "text block" then return to user-mode app via DeviceIoControl. 2. User-mode app sends the "text block" to WebLM ...