PDA

View Full Version : FLELM license generation help


calvin
12-05-2010, 01:01 AM
Hi Friends,

With the help of some good post and articles from the forum, I have found the seed1 & seed2 from my daemon.

Overcame most of the problems but the lic is not accepted by lmgrd

"Invalid license key (inconsistent authentication code)"

Please help :(

008348
12-05-2010, 08:08 AM
upload your deamon and a demo lic.

calvin
12-05-2010, 11:14 AM
Hi,

I have uploaded the daemon and demo lic with my lm_code.h.

hxxp://www.4shared.com/file/TZkXO2JJ/Daemon.html

Please help me identify my error. archive pass in PM.

Calvin

BfoX
12-05-2010, 11:44 AM
your definitions of the
#define LM_SEED1 0x25808BC3
#define LM_SEED2 0xDA9FEE92
is wrong!

He is
#define ENCRYPTION_SEED1 0x25808BC3
#define ENCRYPTION_SEED2 0xDA9FEE92

added:
also float type of the license cant be uncounted...

calvin
12-05-2010, 11:58 AM
Thanks Bfox,

This means I need to make changes in lmseed.h? what value to be added in lm_code.h?

After making changes lmseed.h, lmcrypt is not generated :(

Calvin

BfoX
12-05-2010, 12:05 PM
RTFM - you NOT HAVE&CAN RECOVERY LM_SEED1/2/3!!!

only OLD license:
SERVER this_host ANY
DAEMON LICPIFT LICPIFT.exe
USE_SERVER
FEATURE Universal_Model LICPIFT 380 01-jan-2011 100 FDFB8DB099E3 ""
FEATURE Universal_Model_Wimax LICPIFT 380 01-jan-2011 100 B9EEBA66308E ""

calvin
12-05-2010, 12:34 PM
@bfox

Can you please share your lm_code.h?

If I use seeds from lmrand1 -seed, values in will it be fine?

Flexlm is new for me..sorry if I sound stupid :(

Calvin

BfoX
12-05-2010, 01:24 PM
> If I use seeds from lmrand1 -seed, values in will it be fine?
this value ONLY FOR YOU!
OTHER value - for your vendor =)

imho you need try recovery
#define ENCRYPTION_SEED3 0xYYYYYYYY
#define ENCRYPTION_SEED4 0xZZZZZZZZ

only this not possible also for this daemon...

ps: try read the FLEXlm manual first, second - CrackZ essay...

008348
12-08-2010, 05:31 AM
You didn't add the two SEEDs you have reversed from the daemon.
add it as:

#define ENCRYPTION_SEED1 0x*********
#define ENCRYPTION_SEED2 0x*********

just like Bfox told you.

calvin
12-08-2010, 10:01 AM
thank you all! I understood my mistake.