Was Misterkid, developer
RaGEZONE VIP
- Joined
- Jun 19, 2009
- Messages
- 1,537
- Reaction score
- 536
The first release of my anti hack project called Q-protect.
People who watches the development section knows some infromation already.
Development:http://forum.ragezone.com/f484/client-sided-anti-hack-c-776749/
Download:
Non Network version
eleted(Dead link)
Non Network version 5
eleted(Dead link)
Non Network version Q-Protect v6
eleted(Dead link)
The source code is the latest one.
Source code: http://forum.ragezone.com/f457/q-protect-anti-hack-source-804205/
I give up on networking version since its not my part to make sure people cant just put a fail dll in there. There are ways that clients can read if the dll is the dll you want people to load in their client.
Version 6 is a complete rewrite. I kinda made a mess.
It doesnt have a console/Networking things in it.
Also it havn't been tested out yet.
It contains some fixes.
Neuz start fixed.
How to add it in your Neuz.exe
open up NeuzMsgProc.cpp
Look for void SkipPatch() after the function
add this
Then find
And add under {
In versioncommon.h
add
This will make it work on the Neuz.
Testing results.
CheatEngine Speed hack wont work at all. -> Cheatengine crash
rpe packet editor wont work at all. -> Neuz.exe -> exit
wpe packet editor wont work at all. -> Neuz.exe -> exit
Infiltration wont work at all. -> Neuz.exe -> exit
flyff-transformation wont work at all -> neuz.exe ->exit
Thread close -> Neuz.exe -> exit
Yannic Mama's Paket editor should not work -> neuz.exe -> exit
ServerSided check closed-> clients closes.
ServerSided not running?-> Client wont start.
Stress test Localhost ran up to 200 clients(Console test DLL) at the same time.
Bypasses
PM me those incase random user uses this
tt1:
Backdoors
None I don't add backdoors in my projects.
ATTATION:There are way's to bypass.This thing Is able to block hack users who did not made their own hacks and doesn't know a thing about packets/programming
Special thanks:
phoen1x(For the basics)
People who watches the development section knows some infromation already.
Development:http://forum.ragezone.com/f484/client-sided-anti-hack-c-776749/
Download:
To view the content, you need to sign in or register
Non Network version
Non Network version 5
Non Network version Q-Protect v6
The source code is the latest one.
Source code: http://forum.ragezone.com/f457/q-protect-anti-hack-source-804205/
I give up on networking version since its not my part to make sure people cant just put a fail dll in there. There are ways that clients can read if the dll is the dll you want people to load in their client.
Version 6 is a complete rewrite. I kinda made a mess.
It doesnt have a console/Networking things in it.
Also it havn't been tested out yet.
It contains some fixes.
Neuz start fixed.
How to add it in your Neuz.exe
open up NeuzMsgProc.cpp
Look for void SkipPatch() after the function
add this
Code:
#ifdef Q_PROTECT
#pragma comment(lib, "ANTIHACKDLL.lib")//Lib directory
using namespace std;
typedef void (*HackCheck)();
BOOL CallDLL()
{
HackCheck _HackCheck;
HINSTANCE hInstLibrary = LoadLibrary("ANTIHACKDLL.dll");
if (hInstLibrary)
{
_HackCheck = (HackCheck)GetProcAddress(hInstLibrary,"HackCheck");
_HackCheck();
}
else
{
ExitProcess( -1 );
}
return true;
}
#endif//Q_PROTECT
Code:
int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow )
{
Code:
#ifdef Q_PROTECT
CallDLL();
#endif//Q_PROTECT
add
Code:
#define Q_PROTECT
Testing results.
CheatEngine Speed hack wont work at all. -> Cheatengine crash
rpe packet editor wont work at all. -> Neuz.exe -> exit
wpe packet editor wont work at all. -> Neuz.exe -> exit
Infiltration wont work at all. -> Neuz.exe -> exit
flyff-transformation wont work at all -> neuz.exe ->exit
Thread close -> Neuz.exe -> exit
Yannic Mama's Paket editor should not work -> neuz.exe -> exit
ServerSided check closed-> clients closes.
ServerSided not running?-> Client wont start.
Stress test Localhost ran up to 200 clients(Console test DLL) at the same time.
Bypasses
PM me those incase random user uses this
Backdoors
None I don't add backdoors in my projects.
ATTATION:There are way's to bypass.This thing Is able to block hack users who did not made their own hacks and doesn't know a thing about packets/programming
Special thanks:
phoen1x(For the basics)
Last edited:

