Results 1 to 10 of 10
  1. #1
    Lakshay's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    www.MPGH.net // General // Crossfire
    Posts
    4,545
    Reputation
    335
    Thanks
    1,102
    My Mood
    Angelic

    X-Trap Bypass (Maybe)

    I decided to start making a code so as to Bypass X-Fire.

    Simply compile in C++ as a DLL and inject. Umm.......Lazy to try out.


    Code:
    #include <windows.h>
    
    #define HackDetect1 0x00435FA6
    BYTE HD1[] = {0xEB, 0x35};
    #define HackDetect2 0x0043CE36
    BYTE HD2[] = {0xEB, 0x35};
    #define HackDetect3 0x0043DCF0
    BYTE HD3[] = {0xEB, 0x35};
    #define HackDetect4 0x0043DCD1
    BYTE HD4[] = {0xEB, 0x1F};
    #define HackDetect5 0x0043DCE9
    BYTE HD5[] = {0xEB, 0x07};
    #define IsDebuggerPresent 0x00499517
    BYTE IDP[] = {0x90};
    #define ZCheckHackProcess1 0x00441E35
    BYTE ZCHP1[] = {0xEB, 0x34};
    #define ZCheckHackProcess2 0x00441E62
    BYTE ZCHP2[] = {0xEB, 0x2C};
    #define ZCheckHackProcess3 0x00441EBD
    BYTE ZCHP3[] = {0xEB, 0x09};
    #define AbnormalBehavior 0x00440353
    BYTE AB[] = {0xE9, 0x8A, 0x00, 0x00, 0x00};
    
    //Write To Memory
    DWORD OldProtection;
    void WriteToMemory(DWORD Offset, DWORD Pointer, DWORD Length){
        VirtualProtect((void *)Offset, Length, PAGE_EXECUTE_READWRITE, &OldProtection);
        RtlMoveMemory((void *)Offset, (const void*)Pointer, Length);
        VirtualProtect((void *)Offset, Length, OldProtection, &OldProtection);
    }
    void ModifyMemory( BYTE *Offset, BYTE *ByteArray, DWORD Length){
        for(DWORD i = 0; i < Length; i++)
            WriteToMemory((DWORD)Offset + i, (DWORD)ByteArray + i, 1);
    }
    
    void Bypass()
    {
    	ModifyMemory((BYTE*)HackDetect1, HD1, 2);
    	ModifyMemory((BYTE*)HackDetect2, HD2, 2);
    	//ModifyMemory((BYTE*)HackDetect3, HD3, 2);
    	ModifyMemory((BYTE*)HackDetect4, HD4, 2);
    	ModifyMemory((BYTE*)HackDetect5, HD5, 2);
    	//ModifyMemory((BYTE*)IsDebuggerPresent, IDP, 1);
    	//ModifyMemory((BYTE*)ZCheckHackProcess1, ZCHP1, 2);
    	//ModifyMemory((BYTE*)ZCheckHackProcess2, ZCHP2, 2);
    	//ModifyMemory((BYTE*)ZCheckHackProcess3, ZCHP3, 2);
    	ModifyMemory((BYTE*)AbnormalBehavior, AB, 5);
    }
    
    bool APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved){
    	if(dwReason == DLL_PROCESS_ATTACH){
    		DisableThreadLibraryCalls(hModule);
    		Bypass();
    		return true;
    	}
    	return true;
    }

  2. The Following User Says Thank You to Lakshay For This Useful Post:

    LakshayBackup (06-05-2010)

  3. #2
    shahin7777's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Some where with a lot of hot chicks!
    Posts
    671
    Reputation
    6
    Thanks
    427
    My Mood
    Angelic
    Nice work.
    Keep it up!

  4. #3
    ninjakas's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    In Quebec , Canada
    Posts
    30
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    Lol Really Nice. I Wanted To Try But My Main Computer Broke down -.- and i have to repair it by myself and i got no time . And the Computer i'm using now is Shity , Anyway Nice work , I'll try it !

  5. #4
    nhathung's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    I need DLL. I not know C++.

  6. #5
    |Uli|'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    I hate to be a spoil sport, oh wait no I love it.

    1) This is not his code.
    2) This was made only to work for Cabal.
    3) This is from 2008 (Or even older).
    4) This will not work anymore.

  7. #6
    Era's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    In a room full of subwoofers and my iPod
    Posts
    298
    Reputation
    9
    Thanks
    11
    My Mood
    Psychedelic
    All the addresses have changed since then so the code was publicly released. Old coding is old.

  8. #7
    dddrrr's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Yesterday it was USA but todays lookin more like China
    Posts
    2,196
    Reputation
    5
    Thanks
    153
    My Mood
    Tired
    can someone post a compiler

  9. #8
    alish1558's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    Quote Originally Posted by dddrrr View Post
    can someone post a compiler
    Just search .. in google.
    "Dev C++"

  10. #9
    nkilla's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Can u post dll here
    Compiled?

  11. #10
    BPGhost's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Berlin, Germany
    Posts
    6
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    yes it´s great thanks XD

Similar Threads

  1. X-TRAP Bypass for Outspark Fiesta
    By gunman353 in forum Anti-Cheat
    Replies: 9
    Last Post: 08-23-2010, 11:23 PM
  2. I heard this X-Trap Bypass Method
    By Savinota in forum CrossFire Hacks & Cheats
    Replies: 13
    Last Post: 12-08-2009, 12:21 PM
  3. Audition X-Trap Bypasser
    By koolazngy94 in forum Hack Requests
    Replies: 1
    Last Post: 05-02-2009, 11:58 AM
  4. Gunz X-trap Bypass!!! by Me:D
    By EleMentX in forum Gunz General
    Replies: 6
    Last Post: 01-04-2009, 09:45 AM
  5. X-Trap Bypass (JP WarRock)
    By aduckie in forum WarRock - International Hacks
    Replies: 4
    Last Post: 02-07-2007, 03:18 PM