Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 49
  1. #31
    dj qarizma 03's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1
    Can you make this into dll for me

  2. #32
    klops44's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    I ask dll file is not well to do it yourself DD
    Last edited by klops44; 01-12-2014 at 05:56 AM.

  3. #33
    zikox's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    568
    Reputation
    40
    Thanks
    1,022
    My Mood
    Cool
    this too much old and dc in xtrap

  4. #34
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,776
    My Mood
    Angelic
    Quote Originally Posted by zikox View Post
    this too much old and dc in xtrap
    You can change the offset
    ᚛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 !



  5. #35
    zikox's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    568
    Reputation
    40
    Thanks
    1,022
    My Mood
    Cool
    Still Patced ^_^ i use this in warrock

  6. #36
    piee's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    hmm..can someone make this to dll for me??..or please share wirh me..

  7. #37
    Mike7890's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Somewhere near you are
    Posts
    1
    Reputation
    10
    Thanks
    0
    Why is this posted on Blackshot hacks when this is not for GG?, Or does it also work as a GG bypass?

  8. #38
    Jaysonpvp's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Nice is Very good!

  9. #39
    I'm not lazy, I just really enjoy doing nothing.
    Donator
    _PuRe.LucK*'s Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    idk bruh.
    Posts
    521
    Reputation
    71
    Thanks
    5,648
    My Mood
    Bored
    Blackshot works with any of them?

  10. #40
    SyukriVanders's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Give me tutioarl plssss

  11. #41
    SyukriVanders's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Can You Give Me A tutioral can

  12. #42
    andrewfam's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Just wondering

    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;
    } 



    I just wonder about this xtrap bypass:
    1. Does it work with other games if I offset the address?
    2. Does it work with "heartbeat" protection method?
    3. Does it work with win7 32bits?

  13. #43
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,776
    My Mood
    Angelic
    Quote Originally Posted by andrewfam View Post
    I just wonder about this xtrap bypass:
    1. Does it work with other games if I offset the address?
    2. Does it work with "heartbeat" protection method?
    3. Does it work with win7 32bits?
    yes it work in other game but you need to reversing the code and address
    ᚛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. The Following User Says Thank You to COD3RIN For This Useful Post:

    andrewfam (02-08-2014)

  15. #44
    andrewfam's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by COD3RIN View Post
    yes it work in other game but you need to reversing the code and address
    How about window 7 32 bits? Does it work?
    Most of xtrap now using the new method called "heartbeat"; does it also work with this new method too?

    Thanks

  16. #45
    muhddownloader's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    can help me coderin?what C++ u use?

Page 3 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