[Guide] How to hide main.exe serial key (Video)

^TheLast^

Active Member
Joined
Jan 13, 2010
Messages
332
Reaction score
231
Здравейте,

от този урок, ще научите как да скриете серийния ключ на main.exe, за да не може да бъде видян с Hex едитор.

Ето кодчето от урока:
MOV EAX PTR DS:[Address],Hex

Важно : Adress от кода по горе е адреса на SerialKey-а в main.exe.
Hex - хекса на стринга,с който ще заместите


Ето го и клипа, следете внимателно, за да няма грешки :)))

|
|
V


Update:

How To change it with .dll ?

Code:
char Msg[] = "MyNewSerialCode1";
memset((void*)0x0066FEF0, 0x00, 16);
memcpy((void*)0x0066FEF0, Msg, sizeof(Msg));

Put this code somewhere in your .dll code. For example in your fixes function.

0x0066FEF0 is the address of the SerialId in your main.exe
In the video you can see how i found that address. :)
 
Last edited:

^TheLast^

Active Member
Joined
Jan 13, 2010
Messages
332
Reaction score
231
Update

How To change it with .dll ?

Code:
char Msg[] = "MyNewSerialCode1";
memset((void*)0x0066FEF0, 0x00, 16);
memcpy((void*)0x0066FEF0, Msg, sizeof(Msg));

Put this code somewhere in your .dll code. For example in your fixes function.

0x0066FEF0 is the address of the SerialId in your main.exe
In the video you can see how i found that address. :)
 
  • Like
Reactions: goldenfox and Dea7h