Make a HWİD system

04/03/2017 15:56 lenclstr746#1
I want make a hwid system but ı dont know pls help for make :)
04/03/2017 17:59 Shawak#2
Maybe people want to help you but they don't know how so please deliver more information so they can, plz
04/04/2017 19:15 lenclstr746#3
None of them could not help :(
04/04/2017 21:00 EngelEatos#4
1. generate HWID ([Only registered and activated users can see links. Click Here To Register...] - you can build your own function)
Code:
func _HWID()
    $osdrive = StringLeft(@SystemDir, 3)
    $original = "0"&@CPUArch & @KBLayout & DriveGetSerial("C:\") & StringUpper(DriveGetType($osdrive)) & DriveSpaceTotal ($osdrive)
    $string2 = StringMid($original, Round(StringLen($original)/2), Round(StringLen($original)/2))
    $string2_mod = _StringToHex(_StringReverse($string2))
    $original = _StringEncrypt(1, $original, $string2_mod, 4)
    Return $original
EndFunc
2. check if database (or a simple file on the server) contains the HWID
3. true => access granted | false => access denied
(4. this is not secure! It's easy to decompile AutoIt. And change or delete this protection.)