Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

Q-Protect Anti hack source code

This is bad code and it only checks a few functions for 0xE9 jumps.

- No IAT patch checking
- No EAT patch checking
- Not comparing current bytes vs orig bytes (like a CRC over the .text section of the dll after it's loaded)

This won't catch non-E9 jumps (push addr/ret for example). It is vulnerable to hooks made via starting the process with CREATE_SUSPENDED since the main thread doesn't start on the C preamble (@ OEP) until the launcher decides to do it. It can be killed by simply stopping all of the AC threads or nopping a few jxx's. It's also vulnerable to false positives if these libraries in the future are modified to use stubs in place of their exports.

And intermixing asm commands and C is stupid. Don't do that.
 
Back