I am part of an online community of bot scripters/makers and exploiters. However, leakage to the undeserved has been a problem. Therefor, I am looking for a way to implement HardwareID Locks on our programs, to block out those who have not earned the right to use whatever we don't want leaked.
Does anybody here have the time to explain to me how to implement these HardwareID Locks into programs?
By the way, most of the time the programs are AHK (AutoHotKey) scripts that have been converted into EXE (Executable) format. _________________
[URL=http://forum.cheatengine.org/viewtopic.php?t=115165]
Getting Money in Your PayPal for Playing Games, Read on here[/URL]
Getting Money in Your PayPal for Playing Games, Read on here
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
Posted: Fri Apr 25, 2008 4:41 pm Post subject:
Your scripts can be decompiled and stolen just so you know.
Implementing hardware ID blocks / locks what ever you want to call it wont stop people from using the app anyway. Nop the compares or hook the API that gets the ID and fake it and it will work for anyone. _________________
For this, GetVolumeInformation would be used, but AutoHotKey already has a wrapped version to get each part of info via calling that API. You can get the serial using:
Code:
drive := "C:\"
DriveGet, serial, serial, %drive%
MsgBox Your serial is: %serial%
(Of course, you should code the drive to locate the system drive and so on.)
Then you can do an if-then compare against that found serial and such. But like it has been said a few times now lol, you can easily bypass it and also decompile the script. _________________
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum