How can I find the data structure that represents mine layout of Minesweeper in memory?

Part 1 of 3 If you are serious into reverse engineering – forget about trainers and cheat engines. Good reverse engineer should first get to know OS, core API functions, program general structure (what is run loop, windows structures, event handling routines), file format (PE). Petzold’s classics “Programming Windows” can help (www.amazon.com/exec/obidos/ISBN=157231995X) as well as … Read more

Unable to load SOS in WinDbg

The CLR runtime dll was renamed to clr.dll with .NET 4. So in order to load the correct version of SOS you need to adjust your .loadby command. I.e. .loadby sos clr Also, if you’re on 64 bit, you should install the 32 bit version of Debugging Tools for Windows as well in order to … Read more

tech