Is it tqanp.dll that causes the issue?

09/24/2013 00:52 { Angelius }#16
Another way around it.
Code:
char strPatch[] = "\x90\xe9";
unsigned char Half_Hour_DC_Bytes[] = { 0x81, 0xC1, 0x40, 0x77, 0x1B, 0x00 };

int Half_Hour_DC_Address = ASM::FindPattern(0x005A25CE, 0x0068532C, Half_Hour_DC_Bytes, 6) + 8;

if(!Half_Hour_DC_Address || !WriteProcessMemory(GetCurrentProcess(), (void*)Half_Hour_DC_Address, strPatch, 2, &ByteRed)) { Message(2017"); return false; }

MODULEINFO mi = {0};
HMODULE TQANP = GetModuleHandleA("TQAnp.dll");
if(TQANP)
{
	GetModuleInformation( GetCurrentProcess(), TQANP, &mi, sizeof(mi) );
	int TQANP_Address = ASM::FindPattern((int)TQANP, (int)(TQANP + mi.SizeOfImage), TQANP_Bytes, 3) - 24;
	char strPatch[] = "\xEB";
	if(!TQANP_Address || !WriteProcessMemory(GetCurrentProcess(), (void*)TQANP_Address, strPatch, 1, &ByteRed)) { Message(2018); return false; }
	return true;
} 
Message(2019);  return false;

//Hooks/patches/code/etc goes here and none of it will be detected.
09/25/2013 16:58 denominator#17
Nishikado this is the one I am using

[Only registered and activated users can see links. Click Here To Register...]
09/25/2013 23:58 atef201080#18
Quote:
Originally Posted by lina111 View Post
thhis tutorials is dead Because TQ changed locations and names of many dll
i watched those tutorials and bypassed the AntiRobotClient.dll and tqanp.dll protection, but you need to do it without breakpoints in ollydbg