Page 1 of 4 123 ... LastLast
Results 1 to 15 of 49
  1. #1
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic

    Hackshield Bypass & Xtrap Bypass Code



    Here the sample bypass code in C++




    This for Hackshield bypass

    Author: Mafia67


    Code:
    BOOL WriteMemory (VOID *lpMem, VOID *lpSrc, DWORD len)
    {
     DWORD lpflOldProtect, flNewProtect = PAGE_READWRITE;
     unsigned char *pDst = (unsigned char *)lpMem, 
     *pSrc = (unsigned char *)lpSrc;
     if (VirtualProtect(lpMem,len,flNewProtect,&lpflOldProtect))
     {
                 while(len-- >0) *pDst++ = *pSrc++;
                 VirtualProtect(lpMem,len, lpflOldProtect,&lpflOldProtect);
                 FlushInstructionCache(GetCurrentProcess(), lpMem, len);
                 return 1;
     }
     return 0;
    }
    
    void HSBypass (void)
    {
       DWORD dwEHSVC = 0;
       do
       {
           dwEHSVC = (DWORD)GetModuleHandle("EhSvc.dll");
           Sleep(250);
       }while(!dwEHSVC);
    
           WriteMemory((LPVOID)(dwEHSVC + 0x003D67F), (LPVOID)"\x03\xD2", 2);
           WriteMemory((LPVOID)(dwEHSVC + 0x003F77D), (LPVOID)"\xB8\x00\x00\x00\x00", 5);
           WriteMemory((LPVOID)(dwEHSVC + 0x000A1A0), (LPVOID)"\xC2\x04\x00", 3);
           WriteMemory((LPVOID)(dwEHSVC + 0x0085B43), (LPVOID)"\xC3", 1);
           WriteMemory((LPVOID)(dwEHSVC + 0x000A238), (LPVOID)"\x74", 1);
       WriteMemory((LPVOID)(dwEHSVC + 0x008523E), (LPVOID)"\xC2\x04\x00", 3);
       WriteMemory((LPVOID)(dwEHSVC + 0x00A5EBA), (LPVOID)"\xD2", 1);
    }
    
    




    This for Xtrap Bypass

    Author: Slicktor

    Main.cpp



    Code:
    #include "Bypass.h"
    
    DWORD WINAPI InitializeXTrapBypass() { 
    
       DWORD nBase;
       while(1)
       {
    
           nBase = (DWORD)GetModuleHandleA("XTrapVa.dll");
    
           if(nBase){
           Sleep(500);
           BYPASS bypass;
           bypass.Driver64();
           bypass.ProcessDetection();
           break;
           }
    
       }
       return 0;
    
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
       DisableThreadLibraryCalls(hDll);
       if( dwReason == DLL_PROCESS_ATTACH)
    
       {
    
             _beginthread((void(*)(void*))InitializeXTrapBypass,sizeof(&InitializeXTrapBypass),0);
       }
    
    
       return TRUE;
    }




    Main.h



    Code:
    #include <Windows.h>
    #include <tlhelp32.h>
    #include <process.h> 
    #include <wchar.h>
    
    class BYPASS
    {
    
    public:
    int BYPASS::ProcessDetection();
    int BYPASS::Driver64();
    };
    int BYPASS::ProcessDetection()
    {
    
       DWORD K32EnumAddr = (DWORD)GetProcAddress(LoadLibraryA("Kernel32.dll"),"K32EnumProcesses");
       //DWORD EnumAddr = (DWORD)GetProcAddress(LoadLibraryA("Psapi.dll"),"EnumProcesses");
       DWORD old;
       VirtualProtect((LPVOID)K32EnumAddr,sizeof(K32EnumAddr),PAGE_EXECUTE_READWRITE,&old);
       //VirtualProtect((LPVOID)EnumAddr,sizeof(EnumAddr),PAGE_EXECUTE_READWRITE,&old);
       memcpy((LPVOID)K32EnumAddr,(LPVOID)"\xC2\x0C\x00",3);
       //memcpy((LPVOID)EnumAddr,(LPVOID)"\xC2\x0C\x00",3);
       return 0;
    }
    
    int BYPASS::Driver64()
    {
    
       wmemcpy((wchar_t*)0x405D0C24,(const wchar_t*)"X6va01",6);
       return 0;
    } 



    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  2. The Following 3 Users Say Thank You to COD3RIN For This Useful Post:

    andrewfam (02-02-2014),GameCube64Bit (01-10-2014),Gouveia- (01-10-2014)

  3. #2
    Gouveia-'s Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by COD3RIN View Post


    Here the sample bypass code in C++




    This for Hackshield bypass

    Author: Mafia67


    Code:
    BOOL WriteMemory (VOID *lpMem, VOID *lpSrc, DWORD len)
    {
     DWORD lpflOldProtect, flNewProtect = PAGE_READWRITE;
     unsigned char *pDst = (unsigned char *)lpMem, 
     *pSrc = (unsigned char *)lpSrc;
     if (VirtualProtect(lpMem,len,flNewProtect,&lpflOldProtect))
     {
                 while(len-- >0) *pDst++ = *pSrc++;
                 VirtualProtect(lpMem,len, lpflOldProtect,&lpflOldProtect);
                 FlushInstructionCache(GetCurrentProcess(), lpMem, len);
                 return 1;
     }
     return 0;
    }
    
    void HSBypass (void)
    {
       DWORD dwEHSVC = 0;
       do
       {
           dwEHSVC = (DWORD)GetModuleHandle("EhSvc.dll");
           Sleep(250);
       }while(!dwEHSVC);
    
           WriteMemory((LPVOID)(dwEHSVC + 0x003D67F), (LPVOID)"\x03\xD2", 2);
           WriteMemory((LPVOID)(dwEHSVC + 0x003F77D), (LPVOID)"\xB8\x00\x00\x00\x00", 5);
           WriteMemory((LPVOID)(dwEHSVC + 0x000A1A0), (LPVOID)"\xC2\x04\x00", 3);
           WriteMemory((LPVOID)(dwEHSVC + 0x0085B43), (LPVOID)"\xC3", 1);
           WriteMemory((LPVOID)(dwEHSVC + 0x000A238), (LPVOID)"\x74", 1);
       WriteMemory((LPVOID)(dwEHSVC + 0x008523E), (LPVOID)"\xC2\x04\x00", 3);
       WriteMemory((LPVOID)(dwEHSVC + 0x00A5EBA), (LPVOID)"\xD2", 1);
    }
    
    




    This for Xtrap Bypass

    Author: Slicktor

    Main.cpp



    Code:
    #include "Bypass.h"
    
    DWORD WINAPI InitializeXTrapBypass() { 
    
       DWORD nBase;
       while(1)
       {
    
           nBase = (DWORD)GetModuleHandleA("XTrapVa.dll");
    
           if(nBase){
           Sleep(500);
           BYPASS bypass;
           bypass.Driver64();
           bypass.ProcessDetection();
           break;
           }
    
       }
       return 0;
    
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
       DisableThreadLibraryCalls(hDll);
       if( dwReason == DLL_PROCESS_ATTACH)
    
       {
    
             _beginthread((void(*)(void*))InitializeXTrapBypass,sizeof(&InitializeXTrapBypass),0);
       }
    
    
       return TRUE;
    }




    Main.h



    Code:
    #include <Windows.h>
    #include <tlhelp32.h>
    #include <process.h> 
    #include <wchar.h>
    
    class BYPASS
    {
    
    public:
    int BYPASS::ProcessDetection();
    int BYPASS::Driver64();
    };
    int BYPASS::ProcessDetection()
    {
    
       DWORD K32EnumAddr = (DWORD)GetProcAddress(LoadLibraryA("Kernel32.dll"),"K32EnumProcesses");
       //DWORD EnumAddr = (DWORD)GetProcAddress(LoadLibraryA("Psapi.dll"),"EnumProcesses");
       DWORD old;
       VirtualProtect((LPVOID)K32EnumAddr,sizeof(K32EnumAddr),PAGE_EXECUTE_READWRITE,&old);
       //VirtualProtect((LPVOID)EnumAddr,sizeof(EnumAddr),PAGE_EXECUTE_READWRITE,&old);
       memcpy((LPVOID)K32EnumAddr,(LPVOID)"\xC2\x0C\x00",3);
       //memcpy((LPVOID)EnumAddr,(LPVOID)"\xC2\x0C\x00",3);
       return 0;
    }
    
    int BYPASS::Driver64()
    {
    
       wmemcpy((wchar_t*)0x405D0C24,(const wchar_t*)"X6va01",6);
       return 0;
    } 



    Ok but it works on Blackshot europe ?

  4. #3
    azooz100's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    2
    thanks for sharing

    but your wallhack for the game i think you should make the hot key easy because alot of us using laptop we dont have notbad or something like that

  5. #4
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by Gouveia- View Post
    Ok but it works on Blackshot europe ?
    It work if you decoded it
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  6. #5
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by azooz100 View Post
    thanks for sharing

    but your wallhack for the game i think you should make the hot key easy because alot of us using laptop we dont have notbad or something like that
    Try to buy notpad with usb port
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  7. #6
    shadowstep98's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Malaysia
    Posts
    48
    Reputation
    10
    Thanks
    864
    My Mood
    Paranoid
    what is main.h???

  8. #7
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Main.header
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  9. #8
    azooz100's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    2
    can i buy from you a vip hack ? contain my request ? wallhack and aimbot only

  10. #9
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by azooz100 View Post
    can i buy from you a vip hack ? contain my request ? wallhack and aimbot only
    I dont have a hack like that
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  11. #10
    azooz100's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    2
    just can you make a wallhack the hotkey for it like " T " or F1 or insert ?

    please please

  12. #11
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by azooz100 View Post
    just can you make a wallhack the hotkey for it like " T " or F1 or insert ?

    please please
    I dont play blackshot.....if you want that hack go to call of duty 4 and play i have a release hack there
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  13. #12
    azooz100's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    2
    no i dont play it

    did you know any site that can i buy vip hack for blackshot from it ?

  14. #13
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by azooz100 View Post
    no i dont play it

    did you know any site that can i buy vip hack for blackshot from it ?
    Google it or youtube it
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  15. #14
    bhushan_ccccc's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    1
    can u give me tutorial.....what to do with all this code
    or how to creat dll file
    or any link that can teach me please ?
    Last edited by bhushan_ccccc; 01-10-2014 at 08:48 AM.

  16. #15
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by bhushan_ccccc View Post
    can u give me tutorial.....what to do with all this code
    or how to creat dll file
    or any link that can teach me please ?
    I'll already post the tutorial read my other post thread
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



Page 1 of 4 123 ... LastLast

Similar Threads

  1. [Outdated] Hackshield Bypass & Xtrap Bypass
    By COD3RIN in forum Alliance of Valiant Arms (AVA) Coding / Source Code
    Replies: 5
    Last Post: 01-10-2014, 05:59 AM
  2. [Source Code] Xtrap Bypass code new!!
    By sam22 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 1
    Last Post: 01-20-2011, 01:53 PM
  3. xtrap bypass code from pub
    By dddrrr in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 40
    Last Post: 08-23-2010, 01:59 PM
  4. XTRAP Bypass
    By Dave84311 in forum WolfTeam Hacks
    Replies: 44
    Last Post: 12-03-2009, 02:29 PM
  5. Trading my account LVL 40 + working bypass for a retail code
    By xWarr0ckx in forum Trade Accounts/Keys/Items
    Replies: 36
    Last Post: 07-02-2007, 10:33 PM