Search found 27 matches
- Mon Mar 25, 2019 1:07 am
- Forum: Technical questions
- Topic: VMP hwid
- Replies: 24
- Views: 33517
Re: VMP hwid
not quite so u can use a second protection like: Sentinel HL dongle / Sentinel Cloud Codemeter dongle both used with SDK + VMP envelope. all SDK dongle calls inside VMP sections, so no one can easy hook them. time calls random call function call menu calls 50-60000 custom made calls, in all exe all...
- Sat Mar 23, 2019 10:12 pm
- Forum: Technical questions
- Topic: VMP hwid
- Replies: 24
- Views: 33517
Re: VMP hwid
HWID protection is very inferior as it can be patched relatively easily. 2 of my programs have already been cracked. if the user get a license file its free game and anything is possible.
- Mon Feb 25, 2019 10:32 pm
- Forum: Technical questions
- Topic: VMP hwid
- Replies: 24
- Views: 33517
Re: VMP hwid
I've seen people make their own HWIDs and not use the traditional one by default. I'm not sure how they accomplished this but the HWID itself was a much longer base64 encoded value. And when I say longer I mean like 100 lines of it. Not sure what they did to accomplish this but it seems like a bette...
- Thu Feb 21, 2019 8:05 am
- Forum: Technical questions
- Topic: KeyGen Delphi Example creating incorrect keys
- Replies: 3
- Views: 6827
Re: KeyGen Delphi Example creating incorrect keys
I get error on compile using that.
E2010 Incompatible types: ‘PWideChar’ and ‘PAnsiChar’
Never mind, changed pHardwareID : PAnsiChar;
It works now. Thanks.
E2010 Incompatible types: ‘PWideChar’ and ‘PAnsiChar’
Never mind, changed pHardwareID : PAnsiChar;
It works now. Thanks.
- Thu Feb 21, 2019 5:55 am
- Forum: Technical questions
- Topic: KeyGen Delphi Example creating incorrect keys
- Replies: 3
- Views: 6827
Re: KeyGen Delphi Example creating incorrect keys
Ok I fixed the issue with generating license, I forgot a dispose statement. However, I have si.flags := HAS_USER_NAME or HAS_HARDWARE_ID; si.pUserName := (PWideChar(Edit1.Text)); si.pHardwareID := (PWideChar(RichEdit1.Text)); pBuf := nil; res := VMProtectGenerateSerialNumber(@pi, @si, @pBuf); but on...
- Thu Feb 21, 2019 5:39 am
- Forum: Technical questions
- Topic: VMP hwid
- Replies: 24
- Views: 33517
Re: VMP hwid
Can you explain how to do this? I'd be interested in making my own.kokole wrote:If you don't like how VMP does it, make your own HWID calculation function and virtualize it, done.
- Thu Feb 21, 2019 4:28 am
- Forum: Technical questions
- Topic: KeyGen Delphi Example creating incorrect keys
- Replies: 3
- Views: 6827
KeyGen Delphi Example creating incorrect keys
Hello, I have one last question. I'm having a problem getting my keygen program written in Delphi to create the correct keys. I exported info from project and placed in program, I specify HWID and Name and attempt to run code. It creates a license but it's never a valid license, it seems like it's s...
- Thu Feb 21, 2019 4:19 am
- Forum: Technical questions
- Topic: Software opens without HWID in Serial
- Replies: 9
- Views: 9984
Re: Software opens without HWID in Serial
Someone could strip HWID out of license and make program no longer locked to machine. That defeats the purpose. There should be a way to force SDK to verify serial number with HWID included as GOOD STATE and serial number without HWID as BAD STATE. It's too easy to take the serial numbers apart and ...
- Thu Feb 21, 2019 1:05 am
- Forum: Technical questions
- Topic: Software opens without HWID in Serial
- Replies: 9
- Views: 9984
Re: Software opens without HWID in Serial
Sorry I didn't explain well. It does appear the program is indeed checking the HWID to see if it matches or not, but if I create a serial number without HWID the program still opens. I want it to require a HWID in the serial number in order to open. Meaning if a serial number is created without a HW...
- Wed Feb 20, 2019 5:03 am
- Forum: Technical questions
- Topic: Software opens without HWID in Serial
- Replies: 9
- Views: 9984
Re: Software opens without HWID in Serial
I have it setting the serial number by reading a text file in the same folder. That’s not the problem. It reads serial number fine and will open when it’s the correct one, but it fails to actually lock to the HWID. I could set HWID incorrectly in license and program will still open.
- Tue Feb 19, 2019 6:33 pm
- Forum: Technical questions
- Topic: Software opens without HWID in Serial
- Replies: 9
- Views: 9984
Re: Software opens without HWID in Serial
I used exact example found in that folder but it still does not lock to HWID. You can create a license without a HWID and the program will open. If you create a license with the wrong HWID that doesn't match the machine you are on, it also opens. It's reading machine HWID correctly and putting it to...
- Sun Feb 17, 2019 8:28 am
- Forum: Technical questions
- Topic: Software opens without HWID in Serial
- Replies: 9
- Views: 9984
Software opens without HWID in Serial
I cannot for the life of me get my application to only accept HWID-locked serial numbers. At the moment I can create a license without a serial number field and the program just opens. I want to get my protected program HWID locked. I'm using Delphi and I don't see any example codes on how to accomp...