View previous topic :: View next topic |
Author |
Message |
DeadlyOne How do I cheat?
Reputation: 0
Joined: 31 Mar 2015 Posts: 1 Location: Germany, Freiburg
|
Posted: Tue Mar 31, 2015 9:07 am Post subject: Breaking a 4 digit password |
|
|
Hello everyone ! I need help , I want to get the 4 digits from a room from a game that has 4 digits, only nubers, the game is with server and it's online, it's possible to break it somehow?
|
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Tue Mar 31, 2015 7:23 pm Post subject: |
|
|
Brute force. Only 10,000 possibilities.
0000
0001
0002
0003
Go!
Anyway, depends if the value of the lock is actually stored server-side.
First find the value of one of the dials. Might as well go with 1-byte search.
Set the dial to '1'. Scan for '1'. Set to '2'. Scan for '2'. etc.
Then, right-click the address and find out what accesses it once you click the unlock button.
Break and trace at that instruction and you should hopefully be able to find where it does a CMP.
I assume you'll see 3 other similar CMP's nearby to check every value of each dial.
|
|
Back to top |
|
 |
|