Results 1 to 3 of 3
  1. #1
    ehsvc.dll's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Is it the bypass or the detour?

    Hey there, my d3d hack is crashing after like 5 minutes. I need to know if it could be the detour, that is crashing warrock. I always get "Undefined HS Error", i know it could be the bypass, but coulndt hackshield detect detour too? And the bypass..
    is the one with the ehsvc adresses still working? i'm patching crc and callback 1

    i use this one:
    Code:
    DWORD DetourCreate(DWORD DetourSrc, DWORD DetourtVlca, DWORD SizeDetour)
    {
    	#define SizeDetour 5
    	DWORD DetourPre, dwProtect, i;
    	if (DetourSrc && DetourtVlca && SizeDetour == SizeDetour)
    	{
    		DetourPre = (DWORD) VirtualAlloc(NULL, SizeDetour + SizeDetour, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
    		if (DetourPre && VirtualProtect((VOID*)DetourSrc, SizeDetour, PAGE_EXECUTE_READWRITE, &dwProtect))
    		{
    			for (i = 0; i < SizeDetour; i++) 
    			{
    				*(BYTE*)( DetourPre + i ) = *(BYTE*)( DetourSrc + i );
    			}
    			*(BYTE*) (DetourPre + SizeDetour + 0) = 0x50;
    			*(BYTE*) (DetourPre + SizeDetour + 0) = 0x58;
    			*(BYTE*) (DetourPre + SizeDetour + 0) = 0xE9;
    			*(DWORD*)(DetourPre + SizeDetour + 1) = (DetourSrc - DetourPre - SizeDetour);
    			*(BYTE*) (DetourSrc + 0) = 0x50;
    			*(BYTE*) (DetourSrc + 0) = 0x58;
    			*(BYTE*) (DetourSrc + 0) = 0xE9;
    			*(DWORD*)(DetourSrc + 1) = (DetourtVlca - DetourSrc - SizeDetour);
    			VirtualProtect((VOID*)DetourSrc, SizeDetour, dwProtect, &dwProtect);
    			VirtualProtect((VOID*)DetourPre, SizeDetour + SizeDetour, PAGE_EXECUTE_READ, &dwProtect);
    			return DetourPre;
    		}
    	}
    	return (0);
    }
    Is it detected?
    Last edited by ehsvc.dll; 04-22-2013 at 05:51 PM.

  2. #2
    R3d_L1n3's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    208
    DWORD DetourCreate(DWORD DetourSrc, DWORD DetourtVlca, DWORD SizeDetour)

    What does the function say ?

    i think its detected , try it

  3. The Following User Says Thank You to R3d_L1n3 For This Useful Post:

    Jhem (04-24-2013)

  4. #3
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,294
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    The detour is detected yes.

Similar Threads

  1. [Help Request] is there a bypass where the bypass is the dll
    By The amazing in forum DayZ Help & Requests
    Replies: 5
    Last Post: 03-24-2013, 03:09 PM
  2. Will a CE be detected if I use the bypass
    By xNarutoSouls in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 08-04-2008, 03:46 PM
  3. the detected thing in a bypass is the process name!!!!
    By prox32 in forum WarRock - International Hacks
    Replies: 23
    Last Post: 07-21-2007, 08:09 PM
  4. PB if fuck*** the bypasses
    By crazy4her in forum WarRock - International Hacks
    Replies: 8
    Last Post: 06-29-2007, 09:38 PM
  5. I need UCE for saving the bypass...
    By EyalZamir in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-15-2007, 04:40 PM