Crackme writeup by @310hkc41b https://twitter.com/310hkc41b
crackmes.one user b1h0 https://crackmes.one/user/b1h0
To analyze this file I have used Ghidra and x64dbg, simply by trying both tools and seeing the differences. It is good to contrast and train in both dynamic and static.
- Load executable and Analyze.
- Search in Symbol Tree left dialog the text "main".
- In Listing you can see at address 0040155a the username that is: "iwonderhowitfeelstobeatimetravel"
- Next, at address 0040158c the password is revealed to us: heyamyspaceboardisbrokencanyouhelpmefindit?
- In the code decompilation window you can also see clearly.
- I think we don't need anything else.
-
Its a 64bits Windows exe
-
Strings with the username and password are also revealed quickly and without problems from 00401553: "iwonderhowitfeelstobeatimetraveler", "heyamyspaceboardisbrokencanyouhelpmefindit?".
- The string in .rdata section at 0000000000488000
- What else?