Sadare Posted July 22, 2016 Posted July 22, 2016 Hi friends.How are you?And today i need your help to create HWID in Visual basic or delphi plz help..I need help to create HWID protected program with Delphi or Visual basic
Jasi2169 Posted July 22, 2016 Posted July 22, 2016 Hwid can be anything For example take C drive serial no.,wmic motherboard serial no,take pc specs and make it as hwid It can be anything depend on the coder and when you get the info you can process it some hashes like readymade sha,md5 etc or code your function to get bytes n do you custom stuff n return hwid and then u can create key which matches that hwid Some small snippet public String gethwid(){ String any = (Build.SERIAL).toString(); if(any != null) return any; else return new String("Haha its anything"); } Now do whatever u want to do like String hwid = gethwid(); to use anywhere it required Make sure you check the validations sometimes some Devices return null so keep ur backup ready like in above example u returned "Haha" string. Once you get hwid u can use it for the Key generation. PS. Some people think HWID is same for all the soft ? No its on coder how it is implemented do you own logic out here
GautamGreat Posted July 25, 2016 Posted July 25, 2016 You can also made it in delphi with easy as Jasi2169 said create a function call it again and again where you need hwid string example procedure gethwid(): string; begin result := hwid; end; 1
Sadare Posted July 25, 2016 Author Posted July 25, 2016 5 minutes ago, ramjane said: You can also made it in delphi with easy as Jasi2169 said create a function call it again and again where you need hwid string example procedure gethwid(): string; begin result := hwid; end; Thanks for help Ramjanee but i dont know to create in delphi.But can you make a small help for me Just attach a screenshot of codings plz
evlncrn8 Posted July 25, 2016 Posted July 25, 2016 sadare, seriously do some work yourself, this constant posting of 'help me' is getting pretty damn tedious, so much so next time i see it i'll report it 1
Sadare Posted July 25, 2016 Author Posted July 25, 2016 2 hours ago, evlncrn8 said: sadare, seriously do some work yourself, this constant posting of 'help me' is getting pretty damn tedious, so much so next time i see it i'll report it sorry but i am going to use delphi as first time so i am asking.I will try my self.
Loki Posted July 26, 2016 Posted July 26, 2016 sadare, I've given you a warning - as you've been told many times, please make some attempt to learn yourself and find answers by searching. You'll get nowhere doing this is you do not spend many hours, weeks and months reading and trying things 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now