Offline Activation Keygen Hardware Id Search

On
Offline Activation Keygen Hardware Id Search Rating: 3,9/5 5387 reviews
How Do I Create A Licenses Key For My Application by Kirusky4life(f): 6:11am On Dec 21, 2012
Av been in the programming line for 3yrs now. As God may have. It has been wonderful. Now i just finished building an application using visual studio. Vb.net to b precise and its a windows application. I want to assign a licenses key to it so dat it wl be use during installation. Then if u don't have a licenses key, it wl allow you use the product for 15 days, den it deactivate the product until you insert a licenses key. This is my major headache right. Please, any help will be appreciated. Thanks in advance my fellow programmer. We network the world.
Re: How Do I Create A Licenses Key For My Application by avosoft: 8:29am On Dec 21, 2012
Kirusky4life: Av been in the programming line for 3yrs now. As God may have. It has been wonderful. Now i just finished building an application using visual studio. Vb.net to b precise and its a windows application. I want to assign a licenses key to it so dat it wl be use during installation. Then if u don't have a licenses key, it wl allow you use the product for 15 days, den it deactivate the product until you insert a licenses key. This is my major headache right. Please, any help will be appreciated. Thanks in advance my fellow programmer. We network the world.

you need to learn cryptography and hashing, google should be a starting point
Re: How Do I Create A Licenses Key For My Application by ABAboi: 11:02am On Dec 21, 2012
You will need to get the hardware details of each computer the software is installed.
encrypt it and check for modification each time the software is started.
you use Mac address and append unique codes to it

1 Like

Re: How Do I Create A Licenses Key For My Application by Kirusky4life(f): 12:34pm On Dec 21, 2012
@Ababi, pls bro. is there a code for me to get the system mac address of each system.
Re: How Do I Create A Licenses Key For My Application by Ymodulus: 3:58pm On Dec 21, 2012
ABAboi: You will need to get the hardware details of each computer the software is installed.
encrypt it and check for modification each time the software is started.
you use Mac address and append unique codes to it

mind u mac address can be tampered with
Re: How Do I Create A Licenses Key For My Application by Ymodulus: 4:00pm On Dec 21, 2012
Re: How Do I Create A Licenses Key For My Application by WhiZTiM(m): 5:09pm On Dec 21, 2012
Using a Mac Address of a NIC is a pretty lame idea.. The user can simply change MAC addresses to that of his friend and thus hav d same key.
Learn Cryptography, hashing and salting as mentioned earlier, you may use the windows registry (Software trick-locks)
the most convenient way to do it is via software locks but it offers least protection. For higher protection, you may use HARDWARE locks, like generating a license key based on the Partition ID of Windows Hard Disk partion.
For example, the ID is '2AC7xxx..etc' then you have 2 algorithm.
The 1st algorithm ALGO1, salts it via methodic process(there are many types of salting techniques.) by probably converting all Characters to ASCII, do cyclic addition (with modulo). If the ascii was
51, 97, 99, 56, x, x, x etc. You may now do.
5+51, 3+97, 1+99, -1+56, 0+x, . 2+x, ..4+x. ..etc.
(in sequence of 2. If adding factor is less than 0, change starting point, and direction)
then send the salted value to you the software maker.
You use the 2nd algorithm ALGO2 to transform that into a unique key.
You now send the user that key. And the software(having ALGO2) uses it to verify equality.
Though its quite expensive for Nigerian market if you do not have a website or the clients lacks internet.
You can have them SMS or mail you!
Thats that! But for offline licensing, you cant enjoy that easily.. But you still have options, like Software locks, .. Hiding and masking(using different entries under different unrelated names) registration key and installation time in the Windows registry is the easiest.
.. ... Regards,
. . . . . . . . . . WhiZTiM.

2 Likes

Re: How Do I Create A Licenses Key For My Application by Nobody: 8:31am On Dec 22, 2012
no matter the logic you apply, win32dasm and numerous hex editors exists to bypass the license logic
any solution that does not check a remote server for license can be cracked
the host file.
Re: How Do I Create A Licenses Key For My Application by kodewrita(m): 4:17pm On Dec 22, 2012
You could use the FlexLM API for VB applications. There are countless software license manager APIs floating around but FlexNet(just mentioned) is one of the most popular. There are also some open source license managers.
I am assuming you will be interested in either maintaining your own license server for end-users to authenticate against it or you could rely on any of the numerous cloud-based license management services.
Start your search here: http://en.wikipedia.org/wiki/License_manager
Regards.
Re: How Do I Create A Licenses Key For My Application by ABAboi: 2:52am On Dec 29, 2012
Fact remains that most licensing process can be hacked.
I am assuming that the project he is working on is not as sophisticated as you guys think.
Kirusky, try using the My.computer.X.X Namespace to get various computer properties.
Encrypt the values and save it locally. Validate the file content with the computer property each time you execute your program

1 Like

Re: How Do I Create A Licenses Key For My Application by Kirusky4life(f): 11:04am On Jan 02, 2013
ABAboi: Fact remains that most licensing process can be hacked.
I am assuming that the project he is working on is not as sophisticated as you guys think.
Kirusky, try using the My.computer.X.X Namespace to get various computer properties.
Encrypt the values and save it locally. Validate the file content with the computer property each time you execute your program
. Tanks guy am very grateful. But am not a he. Am a she. Happy nu yr
Re: How Do I Create A Licenses Key For My Application by CodeHouse: 9:12am On Apr 02, 2013
Using a server time stamp would work, get user hardware ID (Board serial), Current Server Date and other info you think is best(Do Not use Hard Disk serial because that changes at every format..I could even develop a small app to change Hard Disk serial without formatting the drive)and SEND to server for stamping.Each time the application is launched, it confirms with the server before use. The disadvantage however, is the fact that users will require internet to use your app. Personally I don't do web things..I am strictly a desktop app developer, but all my apps have cloud capabilities. I had to develop a keygen which will combine the username of the PC and board serial to generate a unique serial key which cannot be used on another PC.
Re: How Do I Create A Licenses Key For My Application by Javanian: 10:54am On Apr 02, 2013
webdezzi: no matter the logic you apply, win32dasm and numerous hex editors exists to bypass the license logic
any solution that does not check a remote server for license can be cracked
the host file.

GBAM!!!
Re: How Do I Create A Licenses Key For My Application by Danyl(m): 11:45am On Apr 02, 2013
CodeHouse: Using a server time stamp would work, get user hardware ID (Board serial), Current Server Date and other info you think is best(Do Not use Hard Disk serial because that changes at every format..I could even develop a small app to change Hard Disk serial without formatting the drive)and SEND to server for stamping.Each time the application is launched, it confirms with the server before use. The disadvantage however, is the fact that users will require internet to use your app. Personally I don't do web things..I am strictly a desktop app developer, but all my apps have cloud capabilities. I had to develop a keygen which will combine the username of the PC and board serial to generate a unique serial key which cannot be used on another PC.
pls how do i get the hardware board ID & username ppty and how do u integrate those values for producn a unique serialID.
A code snippet wil help
2. Which installer creator could b usd 4ds unique serialID.?
Re: How Do I Create A Licenses Key For My Application by gu7S05: 11:59am On Apr 02, 2013
I have successfully made an executable program using html code,it has features like serial key,licence number and validity period.No need of passing thru d hurdles of syntax error!..besides you're using VB,it wud hav been more easier if u were using delphi IDE.
Re: How Do I Create A Licenses Key For My Application by CodeHouse: 12:22pm On Apr 03, 2013
@Danyl what language are you using? one of the best way to curb piracy of your app (offline apps) is to call users or have them call you for the serial key.that way you'd have a database of your clients. I believe your application is a desktop app (not html or any site things..)? Do not bother about the keygen..I will compile a small app, which will be integrated into your application as the registration module (this registration module will automatically get the username of users pc and the hardware ID. Users will call(toll free, I believe) or use short code sms..which ever way to get the key to activate the application..They will send you the username and hardware ID from which you will generate a serial key (Note: serial keys generated is unique and do not repeat,therefore two users can't use one serial key since it is system generated and uses MD5 encryption algorithm) Note: I am going to be using my compiler to dev a keygen for you (I have been using it over the years and it is confirmed to work)
2. I believe with whatever language you are using, you could develop your own installer. You do not need any installer to create the unique ID, The keygen would solve that problem. But if you can't code an installer, you could use inno setup to distribute your app.
Here's a screen shot of my serial generator! There are two parts to it, first part is integrated in your app, which is to automatically get the username of users pc and unique hardware ID, after which they are to send you that so as for you to use the serial keygen (second part) to generate a unique serial key for the application - 30days, 90 days, or full version

1 Like

Re: How Do I Create A Licenses Key For My Application by Danyl(m): 7:11pm On Apr 05, 2013
@codehouse, thanks for you response. Iam using Java to develop and am also using Innoset compiler but i dont really like the unique ID being generated by Innosetup compiler but i will like to have this your unique serial ID generator and how to integrate it into my application.
Re: How Do I Create A Licenses Key For My Application by CodeHouse: 5:54pm On May 09, 2013
Hi mate! Sorry it took this long to reply to your post, recently.last month precisely, I got roobed of my laptop (.all my apps, source codes and development tools all gone..ufff!) If your app is a window based app, with native .exe or msi extension.do send me just d name you intend to use for your app, so I can write a front end for it which will include the serial module. My mail paulodiete@gmail.com
Re: How Do I Create A Licenses Key For My Application by Danyl(m): 10:19am On May 10, 2013
CodeHouse: Hi mate! Sorry it took this long to reply to your post, recently.last month precisely, I got roobed of my laptop (.all my apps, source codes and development tools all gone..ufff!) If your app is a window based app, with native .exe or msi extension.do send me just d name you intend to use for your app, so I can write a front end for it which will include the serial module. My mail paulodiete@gmail.com
really sori 4ur loss,i'll send u a mail.. I nid it as wel. My email addr is: danoxgroup@gmail.com & olabiyi007@gmail.com.

(1) (Reply)

Categories Of Programmers (by Areas Of Expertise) / Whatsapp Group For JAVA Enthusiasts, Learners And Professionals / Junit: How To Set Classpath On Windows Xp

(Go Up)

Sections: politics(1)businessautos(1)jobs(1)careereducation(1)romancecomputersphonestravelsportsfashionhealth
religioncelebstv-moviesmusic-radioliteraturewebmastersprogrammingtechmarket

Links: (0)(1)(2)(3)(4)(5)(6)(7)(8)(9)

Nairaland - Copyright © 2005 - 2019 Oluwaseun Osewa. All rights reserved. See How To Advertise. 96
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.

Microsoft this week announced a seemingly minor change to its activation rules for Windows 10, effective with the Anniversary Update coming this summer.

The announcement was buried in the release notes for build 14371 of Windows 10, released a few days ago. Those notes were published in the Feedback Hub, which is available only to registered members of the Windows Insider Program running a Windows 10 preview edition.

read this

We're nearing the end of Microsoft's unprecedented free upgrade offer for Windows 10.

As with all things that are related to licensing, the details are confusing and it's easy for even longtime Windows watchers to draw the wrong conclusions or to dream up conspiracy theories.

Here's the short version: Beginning with the Anniversary Update, version 1607, you'll be able to link a Windows 10 digital license with a Microsoft account. This linkage occurs automatically if you're signed in with a Microsoft account when you upgrade to version 1607.

For anyone else, including those with local or domain accounts, this step is optional. In any case, it applies only to those who have a Windows 10 digital license. That group consists primarily of those who took advantage of the year-long free upgrade offer that ends on July 29, 2016.

This new feature doesn't change the fundamental way that Microsoft's activation servers work. The process of activating Windows relies on a unique installation ID, which is based on a hash of information taken from the hardware on which Windows is installed. That hash is reportedly not reversible and is not tied to any other Microsoft services. It identifies a specific device, not a person.

When you use a product key to activate Windows for the first time, that installation ID is recorded in the activation database alongside the product key you entered with the installation. Later, if you need to reinstall the same edition of Windows on the same hardware, with the same product key, activation happens automatically. (Conversely, if you try to use that product key on a different machine with a different hardware ID, you'll probably be denied activation.)

But those free Windows 10 upgrades don't use a product key, so they require a different way to store the details of each upgrade license on the activation servers.

During an upgrade, the Windows 10 setup program confirms that the underlying copy of Windows 7 or Windows 8.1 is properly activated. During the free upgrade period, the Windows activation servers used that confirmation to generate a Windows 10 digital license (during the upgrade period, Microsoft referred to this as a 'digital entitlement'). That digital license is stored in the activation database with your hardware-based installation ID and details about the version you just activated (Home or Pro).

Back in 2004, four accompany opened Barcade, a alliance amid best video amateur and ability beer in Brooklyn, N.Y.’s Williamsburg neighborhood. Dave and busters power hour

If you wipe that hard disk completely, boot from Windows 10 installation media, and install a clean copy, Windows tries to activate automatically, using an installation ID that it sends to the Windows activation servers. Because the underlying hardware hasn't changed, the installation ID is identical to one stored in the activation database, and the digital license is activated automatically.

For most PCs, most of the time, that process just works.

But there are two situations in which reactivation can stumble.

First, if you make major hardware changes. The algorithm that generates the installation ID is a closely guarded secret, but I can confirm from years of testing that it is extremely tolerant of minor changes. If you add a hard drive, upgrade a video card, or increase memory, you almost certainly won't trigger a change in the installation ID.

Changing the motherboard, however, generates a new installation ID. Under Microsoft's sometimes Byzantine licensing rules, your license is valid if you replace a motherboard because of hardware failure. You need a new license if you chose to upgrade the motherboard, because you're essentially building a new PC.

Under the existing rules, there's no way to prove that you have a digital license for that PC. You have to call the telephone activation line and plead your case with a support representative.

That's where linking the digital license to a Microsoft account comes in. After a motherboard replacement, you can use the new Activation Troubleshooter to view digital licenses associated with your Microsoft account and identify the device that has the replacement motherboard. That action transfers the digital license to the new installation ID.

The second situation where the link to a Microsoft account might help is on a PC that has more than one license attached to it. That situation might apply if you purchased a PC with Windows 10 Home installed by the OEM and then upgraded to Windows 10 Pro during the free upgrade period using a product key from a retail copy of Windows 7 Professional, for example.

In that situation, a clean reinstall of Windows 10 from the manufacturer's recovery media might result in the Home version being installed and activated. The procedure for upgrading to Windows 10 Pro is far from obvious, involving generic product keys that aren't officially published. Here, too, being able to link that Windows 10 Pro license to a Microsoft account makes it possible to identify the correct digital license.

Microsoft says the new feature to link a digital license to a Microsoft account is in Windows 10 build 14371 or later. I have one PC that performed this connection automatically. I have not yet been able to test the manual linking process.

One concern that some will have is that linking installation IDs to a Microsoft account fundamentally changes the anonymity of activation. That's not likely to go over well with the contingent that believes Windows 10 telemetry is actually a secret spying program.

I am sure there will be additional conspiracy theories as well. In fact, I expect to read a few of them in the comments to this post.

I'll have more details after I get the chance to test this feature more fully.

Windows 10

Related Topics:

Microsoft Enterprise Software Windows PCs Reviews