Skip to content

x64-exploit0r/100HealthGame_Crackme_Solution

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

100HealthGame_Crackme_Solution

I have uploaded my crackme on Crackmes.one

Solution:

1: Everything in the game is happing in this part of the code

Screenshot 2024-01-27 192758

2: Here the "sub esp, 28" This line decrements the stack pointer (esp) by 28, effectively allocating 28 bytes of space on the stack. This space is used for storing local variables or temporary data.

Screenshot 2024-01-27 192316

3: "mov dword ptr ss:[ebp-C], ecx" This line moves the value in the ecx register to the memory location pointed to by the ebp register minus 12 (C in hexadecimal is 12 in decimal). This is typically used to store a function's parameter or local variable.

4: "lea edx, dword ptr ds:[eax+A]" This line loads the effective address of the memory location that is a distance A (10 in hexadecimal) away from the memory location pointed to by the eax register into the edx register.

Note: When you will first open the crackme you will see "lea edx, dword ptr ds:[eax-A]" here eax is being decreased by A (a.k.a 10).

About

Solution for 100HealthGame

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages