License

1) Create a License key feature for your application Ever wanted to add a license key feature to your application? It is simple but will take a lot of time from you Because you need to come up with a good algorithm that will be hard to be broken. What do you need? 1) Key Generator. 2) Key and DateValidation function in client application. Standard and Professional Editions of the Java Service Wrapper are activated by a set of License Keys. The License Keys are required to be set in the License Key Property included as part of the Wrapper's configuration file. License key property list; Server License Key property Overview.

Keygen

Generator
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)

License key generator java free

Hope For C++ Newbies: Gui Toolkits / Junit: How To Set Classpath On Windows Xp / The 3 Types Of Developers You Will Find In Africa. Which 1 Are You?

(Go Up)

Reimage License Key Generator

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. 99
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.

License Key Generator Free

Search
Code Directory
ASP
ASP.NET
C/C++
CFML
CGI/PERL
Delphi
Development
Flash
HTML
Java
JavaScript
Pascal
PHP
Python
SQL
Tools
Visual Basic & VB.NET
XML
New Code
HTMLPad 2018 15.5
WeBuilder 2018 15.5
SentiMask SDK Trial 2.0.0
Track Order For Magento 2 1.0.0
Calendar 365 For Dynamics CRM 4.0
Scimbo 1.2
Odoo Furnito Theme 1.0
.Net Assemblies/WSDL Import Utility for Delphi 6.0.4.0
Devart Excel Add-in for Zendesk 1.7
Excel Add-in for Marketo 1.7
GetOrgChart 2.5.3
AnyGantt JS Gantt Charts 8.6.0
AnyChart JS Charts and Dashboards 8.6.0
Multi Vendor Ecommerce Script & Apps 4.0
Magento 2 Inventory Management Extension 1.0
Top Code
VisualNEO Web 2018.12.15
Azizi search engine script PHP 4.1.10
Paste phpSoftPro 1.4.1
Extreme Injector 3.7
Deals and Discounts Website Script 1.0.2
ADO.NET Provider for ExactTarget 1.0
Solid File System OS edition 5.1
Classified Ad Lister 1.0
Aglowsoft SQL Query Tools 8.2
Invoice Manager by PHPJabbers 3.0
ICPennyBid Penny Auction Script 4.0
PHP Review Script 1.0
ATN Resume Finder 2.0
ATN Site Builder 3.0
Availability Booking Calendar PHP 1.0
Top Search
Code To Add Url
Photo Add Comment Php
Dirty Word
Guestbooks Aspnetindex
Gallery Comments
Driver For Webcam
Guestbooks Aspnet
German Guestbook
Gallery Comment
Html Guestbook Codes
Php Banner Traffic Tracking
Flat File Php Guestbook
Twitter Update Script Php
Article Directory Script For Wordpress
Jforum Source Code
Related Search
Java Sound Wave Generator
License Plate Generator
Java Time Table Generator
Java Database Application Generator
Java Script Codes Generator
Java Prime Number Generator
Project Synopsis On Java Sql Queries Generator
Source Code In Java For Timetable Generator
Java License Plate
Code Generator For Java
Java Code Generator
Java Code Generator Tool
Aztec Code Java Generator
Java Generator
One Type Pad Generator Java
Java License Key Generator

Code 1-20 of 60 Pages: Go to 1 23Next >> page

Abluescarab Designs CD-Key Generator... - Absscdkeygen

The Abluescarab Designs CD-Key Generator will help you generate random CD keys for use in your shareware products. You can choose letters, numbers, or both. You can also pick whether or not to use lowercase letters.

Tools / Development Tools


Jwag ( Java Web Application Generator) is a simple Java based Application, that allows you to generate a complete Spring web application to do CRUD (Create, Retrieve, Update and Delete) operations on MySQL Database tables

Tools / Code Generators


MDAOG is a Java Based DAO Generator. MDAOG generates Java source files that are used to make database access from web applications easier. It uses the DAO design principle. Currently it is geared for use with PostgreSQL databases.

Tools / Code Generators


Java Pseudo code generator . Convert java source code to pseudo code . GPL licenceA very useful LLD tool for Java developers .

Tools / Code Generators


anj is a java Swing code generator. anj allows users to Drag&Drop getter and setter methods of two classes to generate java mapping code.

Tools / Servers


GFX Codegen is Java, EJB code generator for developing large-scale Desktop-based applications

Development / Front Ends


The GUFF (the Gnu Ultimate Framework Facility) is a simple Java-based code generator.From a XML description of the database (tables, fields, indexes, relations and so on..) you can easily generatecustomizable HTML, Java code, DDL's for various...

Development / Data Formats


A new WSDL to Java/JiBX binding generator. Supports multiple inputs as WSDL or XSD, array unwrapping (rare feature !), choice between plain arrays or java.util.List, prefix and namespace aware, serializable beans, and 'ready to bind'...

Tools / Debuggers


JAVA Sequence Diagram Generator

Tools / Code Generators


XML2Java is a DTD driven Java source code generator for XML data binding. According to a given document type definition several Java constructs are created which reflect the information stored in a XML document following that DTD including I/O...

Tools / Code Generators


Java Object Relational GENerator

Tools / Development Tools


Senna Cafeh Kak UML Class Diagram Editor and Java Source Code Generator

Advanced Software Protection - ICE... - Ionworx Technology


ICE License v2.0 is a new and innovative licensing protection for Borland developers wishing to integrate copy protection with maximum security. With ICE License you can turn your software in Trial Edition. To prevent key generator for your...

Generator Package (Delphi 6) 2.1 - EDA Delphi Team


This is a package containing: E generator of user-defined auto incremental sequences of characters component; E Unique Key generator component; E Common utilities and classes. E Native Delphi Help to take speedy components in your hand. Example:...

Generator Package (Delphi 7) 2.11 - EDA Delphi Team


This is a package containing: E Generator of user-defined auto incremental sequences of characters component;E Unique Key generator component;E Common utilities and classes. E Native Delphi Help to take speedy components in your hand.Example:You...

C/C++ / Development Tools


PELock - is an application that allows you to protect Windows executable files (so called exe-protector). Besides that, PELock allows easy creation of application of evaluation-demo type, hich use license key system. PELock features: compression...

Tools / Development Tools


Texlipse is a plugin that adds Latex editing support for the popular Eclipse Java IDE. Key features include: syntax highlight, command completion, bibliography completion, outline navigation and automatic building.

Development / Translation


Woodpecker is a Java ResourceBundle property file editor. It provides friendly and platform native UI, Java access class generator and other exciting features.

Development / Front Ends


Emeraldjb, is a Object / Relational DAO generator for Java Applications. It allows developers to map relational database tables to XML and have the DAO pattern based SQL and Java source generated.

Delphi / Compression, Encryption


System Key version 1.0 is a Delphi component that enables any system written in Delphi to have an encrypted intelligent key incorporated in the system to handle copy protection and licensing of the product. The key has anti registry and date...

License Key Generator Java

Home|Submit Code|Top Code Search|Last Code Search|Privacy Policy|Link to Us|Contact