Part 1. The Lazy Player
TimNew
PG - 13
Have you heard about hack/cheat in a game?
Have you tried to use a built-in cheat code in a game?
Have you tried to use some tool to hack a game?
Have you tried to work out how the game work?
Have you tried to build your own game?
Have you ever considered how to prevent game being hacked
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
PEOPLE DID IT
PEOPLE LIVE ON IT
PEOPLE KEEP DOING IT
SUEPR BRIEF HISTORY
INCOMPLETE LIST
GAME BUSTER
GAME WIZARD
FPE2000
GAME MASTER
FPE (FIX PEOPLE EXPERT)
GDB
PC TOOLS
BLACK ICE
Don't forget your wind proof umbrella
To be invincible?
Or can spent as much money as you want?
Or cast forbidden spell like eating candy?
Game world is a digital world
Or maybe values
let us talk about this later
Or get some rare item without spending hundreds of hours
so every thing is just a value
Invincible
Keep HP the same even being attacked
Keep money the same, when buying stuff
Super rich
Keep mana the same, when casting spell
Unlimited Mana
Assign a new value(s) to the inventory
Rare item
Find the value
Keep it the same
Or change it to a certain value
Constantly or under a certain condition
So Find the value is the key
The value is stored in variable
The value of a variable is somehow stored in the memory
Developer update the value by assigning value to the variable
Variable is kind of an address to the value
Variable name is translated into memory address by compiler
What we need to do is to find the type and the address of the variable
Update the value or freeze it
Find the address using memory scan
Update value/freeze value works great
BUT the address might change
BUT we might want the value changing by rule rather than just frozen
BUT freezing value might crash the game
BUT it fails when address changed
BUT there might be more than 1 addresses
0x1126F2C9C movsxd rax, dword [r14+0x38] 49 63 46 38
0x1126F2CA0 inc eax FF C0
0x1126F2CA2 mov [r14+0x38], eax 41 89 46 38
mov eax, 0xffff b8 ff ff 00 00
mov [r14+0x38], eax 41 89 46 38
49 63 46 38 FF C0 41 89 46 38
10 Bytes
b8 ff ff 00 00 41 89 46 38
9 Bytes
b8 ff ff 00 00 41 89 46 38 90
9 + 1 Bytes
movsxd rax, dword [r14+0x38]
inc eax
mov [r14+0x38], eax
mov eax, 0xffff
mov [r14+0x38], eax
mov eax, 0xffff
mov [r14+0x38], eax
nop
Why people hack game?
Why there are clones?!
Memory scan
Memory lock
Memory Edit
Code Injection
Part 2. The Mad Developer
TimNew