Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 49
  1. #16
    abang123's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Buzzed
    did it just nid .cpp and .h to create the bypass? how and where to use the 1st one, tat for hackshield bypass, or didnt nid to put the 1st code?
    i know tat 2nd is main.cpp 3rd is main.h tell me pls for the 1st code

  2. #17
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    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;
    } 



    Dickhead, why the fuck did you post XTRAP for ?


    Mess with the best, die like the rest.


  3. #18
    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 Caezer99 View Post
    Dickhead, why the fuck did you post XTRAP for ?
    So what the problem of that if post xtrap bypass take a look carefully the code you can change in bs..... it start in dword winapi then you edit it what is the porpuse of reversing code.....to you
    ᚛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 !



  4. #19
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    Quote Originally Posted by COD3RIN View Post

    So what the problem of that if post xtrap bypass take a look carefully the code you can change in bs..... it start in dword winapi then you edit it what is the porpuse of reversing code.....to you
    Instead of releasing other people's work, why not release yours ? Because you can't make your own work ?


    Mess with the best, die like the rest.


  5. #20
    iryan123's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    My Mood
    Bitchy
    why this coderin guy got banned? i wonder coz i dont play blackshot for many times.

    can someone tell me?

  6. #21
    shadowstep98's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Malaysia
    Posts
    48
    Reputation
    10
    Thanks
    864
    My Mood
    Paranoid
    Quote Originally Posted by COD3RIN View Post
    Main.header
    I know....what to do with main.h

  7. #22
    Ticherhaz's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Malaysia
    Posts
    6,564
    Reputation
    1376
    Thanks
    1,297
    My Mood
    Inspired
    nice.. thanks for sharing
    Anything can PM me. I'm from Malaysia.

  8. #23
    BlackDead2025's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    whene hackshield decoded i cant hack whit totalitem ?? (files hack) ??

  9. #24
    iryan123's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    My Mood
    Bitchy
    Quote Originally Posted by Zuhrain View Post
    nice.. thanks for sharing
    this guy got banned since u post..

    nice.. faker got banned..
    coderin!! if u see this pls hear me say fuck u!!

    anyway do someone know the ban reason?

  10. #25
    ImmortalZero's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Can you make this into dll for me because I can't download C++ as the file is too big for me. thank you

  11. #26
    dj qarizma 03's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1
    Can you give me that?

  12. #27
    TheMrNobody's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    Death Star
    Posts
    101
    Reputation
    10
    Thanks
    60
    Very cool man!

  13. #28
    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 iryan123 View Post
    this guy got banned since u post..

    nice.. faker got banned..
    coderin!! if u see this pls hear me say fuck u!!

    anyway do someone know the ban reason?
    What a stupid brainless kid
    ᚛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 !



  14. #29
    Ticherhaz's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Malaysia
    Posts
    6,564
    Reputation
    1376
    Thanks
    1,297
    My Mood
    Inspired
    Quote Originally Posted by COD3RIN View Post


    What a stupid brainless kid
    why u got banned anyway?
    Anything can PM me. I'm from Malaysia.

  15. #30
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    Quote Originally Posted by COD3RIN View Post


    What a stupid brainless kid
    Just like you and your whole NAZI ancestry.


    Mess with the best, die like the rest.


Page 2 of 4 FirstFirst 1234 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