Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed

    Take the bypass and fuck warcock up ;)

    Code:
    DWORD OldProtection;
    void MEMwrite(void *adr, void *ptr, int size)
    {
    	VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
    	memcpy(adr,ptr,size);
    	VirtualProtect(adr,size,OldProtection, &OldProtection);
    }
     
    void NewDetourhs(long Address,int Size,int Size2)
    {
    long EhSvc = (long)GetModuleHandleA("EhSvc.dll"); 
    DWORD OldProtect;
    VirtualProtect((void*)(EhSvc+Address),Size,PAGE_EXECUTE_READWRITE,&OldProtect); 
    *(DWORD*)(EhSvc+Address) = Size2; 
    }
     
     
    void CopyModules(void)
    {
     
    	long EhSvc = (long)GetModuleHandleA("EhSvc.dll"); 
     
    	//self crc check
    	MEMwrite((void *)(EhSvc+0x2B59A),(void*)(PBYTE)"\x90\xE9",2);
     
        //anti asm scan warrock.exe
    	MEMwrite((void *)(EhSvc+0x1D0DC),(void*)(PBYTE)"\x90\x90",2);
     
    	////unhook dip & sss 
    	MEMwrite((void *)(EhSvc+0x6B2B6),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x6B2E0),(void*)(PBYTE)"\xEB",1);
     
    	//dll jump code check
    	MEMwrite((void *)(EhSvc+0x6CA97),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x6CD32),(void*)(PBYTE)"\xEB",1);
     
    	////anti restore page
    	MEMwrite((void *)(EhSvc+0x659F3),(void*)(PBYTE)"\xEB",1);
     
    	//cheat engine
    	MEMwrite((void *)(EhSvc+0x59794),(void*)(PBYTE)"\xE9\x7E\x0A\x00\x00",5);
     
    	// nano detect objects 
    	MEMwrite((void *)(EhSvc+0x28408),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x2851C),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x29E2C),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x26EDB),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x27025),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x2900D),(void*)(PBYTE)"\x85\xED",2);
    	MEMwrite((void *)(EhSvc+0x2525B),(void*)(PBYTE)"\x3B\xDB",2);
    	MEMwrite((void *)(EhSvc+0x27107),(void*)(PBYTE)"\x85\xC0",2);
    	MEMwrite((void *)(EhSvc+0x298F8),(void*)(PBYTE)"\xB8\x00\x00\x00\x00\x90",6);
    	MEMwrite((void *)(EhSvc+0x5D02F),(void*)(PBYTE)"\xB8\x01\x00\x00\x00\xC3",6);
    	MEMwrite((void *)(EhSvc+0x65921),(void*)(PBYTE)"\xEB",1);
    	MEMwrite((void *)(EhSvc+0x65933),(void*)(PBYTE)"\xE9\x99\x01\x00\x00",5);
    	MEMwrite((void *)(EhSvc+0x298F8),(void*)(PBYTE)"\xB8\x00\x00\x00\x00\x90",6);
    	MEMwrite((void *)(EhSvc+0x2711F),(void*)(PBYTE)"\x31",1);
    	MEMwrite((void *)(EhSvc+0x2527F),(void*)(PBYTE)"\x31",1);
    	MEMwrite((void *)(EhSvc+0x29021),(void*)(PBYTE)"\x31",1);
    	MEMwrite((void *)(EhSvc+0x2B598),(void*)(PBYTE)"\x31",1);
    	}
     
     
    void Antiban(void)
    {
    DWORD Old;
    VirtualProtect((BYTE*)int(0x00587850),0x8,PAGE_EXECUTE_READWRITE,&Old);
    *(int*) 0x00587850 = 2415922370;
    }
     
    void Loop(void) 
    {
    for(;;)
    {
    long EhSvc = (long)GetModuleHandleA("EhSvc.dll");
    if(EhSvc!=0)
    {
    Antiban(); 
    CopyModules(); 
    }
    Sleep(20);
    }
    }

    If you are known enough and want to get the addy, pm me!!!
    no bypass for people with fewer than 1250 post

    and don´t forget to press the thx button^^

  2. The Following 7 Users Say Thank You to Lukas59 For This Useful Post:

    AeroMan (04-24-2010),Crazy Frog (05-03-2010),futbolcuadem (04-28-2010),Hacker8) (04-24-2010),maykapablo (04-24-2010),n4n033 (04-24-2010),sunce96 (04-24-2010)

  3. #2
    Hacker8)'s Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Behind you!
    Posts
    132
    Reputation
    10
    Thanks
    155
    My Mood
    Pensive
    :O! I don't thought someone will post the bypass code in public, but good job....

  4. #3
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    i don´t know when i should release my pub :/
    because there are still some bugs, but i´m to lazy to fix them and to add more features...

  5. #4
    Rechocto's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    128
    Reputation
    56
    Thanks
    107
    Requesting this be removed.. quickly

  6. #5
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    Oo?
    why?
    warrock shouuld get fucked up^^

  7. #6
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,291
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    nice release mate!

  8. #7
    reaper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    The Deep South
    Posts
    5,247
    Reputation
    58
    Thanks
    1,077
    My Mood
    Relaxed
    Quote Originally Posted by Rechocto View Post
    Requesting this be removed.. quickly
    Rofl and who are you?

  9. #8
    Shocking's Avatar
    Join Date
    Oct 2008
    Gender
    female
    Location
    In your pants.
    Posts
    4,116
    Reputation
    112
    Thanks
    1,029
    My Mood
    Shocked
    Lols, WarRock is fucked up already.

  10. #9
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    warrock should buy a better antihack tool^^..
    cause everybody can make his own hacks..
    and nobody is playing without hacks..
    not even lvl 50 accounts..

  11. #10
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,291
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    ye, lol the hackshield sux

  12. #11
    IHelper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Ask me tommorow
    Posts
    4,797
    Reputation
    53
    Thanks
    2,056
    My Mood
    Amazed
    Quote Originally Posted by Shocking View Post
    Lols, WarRock is fucked up already.
    QFT
    warrock =WarFuck
    You want respect
    Earn it.

  13. #12
    matjuh123's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    So.. you didn't look in your closet yet?
    Posts
    1,204
    Reputation
    21
    Thanks
    642
    My Mood
    Amazed
    Quote Originally Posted by IHelper View Post

    QFT
    warrock =WarFuck
    Yes, it's true. Warrock is already fucked up. EVERYONE is hacking there.


    (but the best hackers come from mpgh.net )
    -I'm back as an active member. (8th December, 2013)

  14. #13
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    there shouldn´t be any further pub hacks anymore..
    cause people should pay for making shit^^

  15. #14
    IHelper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Ask me tommorow
    Posts
    4,797
    Reputation
    53
    Thanks
    2,056
    My Mood
    Amazed
    Anyway
    Good Job Krellooo
    You want respect
    Earn it.

  16. #15
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    no problem :P

Page 1 of 2 12 LastLast

Similar Threads

  1. About The Engine bypass and Hack
    By swatfx in forum Combat Arms Discussions
    Replies: 3
    Last Post: 10-03-2009, 02:11 PM
  2. Replies: 1
    Last Post: 10-14-2008, 09:41 PM
  3. fuck bush and fuck the military
    By somedude1920 in forum Flaming & Rage
    Replies: 19
    Last Post: 08-26-2008, 05:34 AM
  4. PB if fuck*** the bypasses
    By crazy4her in forum WarRock - International Hacks
    Replies: 8
    Last Post: 06-29-2007, 09:38 PM
  5. The one and only waorking bypass!
    By wwechampabdel in forum WarRock - International Hacks
    Replies: 12
    Last Post: 05-30-2007, 06:40 PM