Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,391
    My Mood
    Stressed

    GameGuard Beta Bypass C++ [Source]

    GameGuard Beta Bypass C++ [Source]

    Some of them, use a CE to change/edit the value of the address and it's pretty tired to use it so I decide to release this source to keep your time from wasting from a lot of work etc... etc...

    First inlcude the following code.
    Code:
    #include <Windows.h>
    #include <process.h>
    #include <Tlhelp32.h>
    #include <winbase.h>
    #include <string.h>
    Must be have a updated address.
    Code:
    #define LAUNCHER_ERROR       0x
    #define ABNORMAL_ACTIVITY    0x
    #define GAMEGUARDEROR1       0x
    #define GAMEGUARDEROR2       0x
    Do the edit/beta bypass.
    Code:
    VOID BetaBypass()
    {while(1){
    memcpy((PVOID) (LAUNCHER_ERROR),     (PVOID) "\xEB\x38", 2);
    memcpy((PVOID) (ABNORMAL_ACTIVITY), (PVOID) "\x0F\x84", 2);
    memcpy((PVOID) (GAMEGUARDEROR1),    (PVOID) "\x55\x07", 2);
    memcpy((PVOID) (GAMEGUARDEROR2),    (PVOID) "\x75\x0A", 2);
    }}
    After the beta bypass, we can kill now the GameGuard without the LAUNCHER ERROR!
    Killproc,
    Code:
    void KillGG(const char *processName) {
     HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPALL, NULL);
     PROCESSENTRY32 pEntry;
     pEntry.dwSize = sizeof(pEntry);
     BOOL hRes = Process32First(hSnapShot, &pEntry);
     while (hRes)
     { if (strcmp(pEntry.szExeFile, processName) == 0) { HANDLE hProcess = OpenProcess(PROCESS_TERMINATE, 0,
        (DWORD)pEntry.th32ProcessID);
       if (hProcess != NULL)
       {
        TerminateProcess(hProcess, 9);
        CloseHandle(hProcess);
       }} hRes = Process32Next(hSnapShot, &pEntry);} CloseHandle(hSnapShot);}
    Do the kill.
    Code:
    void KillGGNow() {
     while (1) {
      KillGG("GameGuard.des");
      KillGG("GameMon.des");
      KillGG("GameMon64.des");
      Sleep(200);}}
    and now, add this to your DLL main.
    Code:
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)BetaBypass, NULL, NULL, NULL);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)KillGGNow, NULL, NULL, NULL);
     

    Killprocess Source
    Brandon
    @Arcton

  2. The Following 4 Users Say Thank You to Jhem For This Useful Post:

    arepizt92 (10-01-2014),GameCube64Bit (10-24-2014),Wulung (12-21-2016),znoen (05-06-2015)

  3. #2
    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 Jhem View Post
    GameGuard Beta Bypass C++ [Source]

    Some of them, use a CE to change/edit the value of the address and it's pretty tired to use it so I decide to release this source to keep your time from wasting from a lot of work etc... etc...

    First inlcude the following code.
    Code:
    #include <Windows.h>
    #include <process.h>
    #include <Tlhelp32.h>
    #include <winbase.h>
    #include <string.h>
    Must be have a updated address.
    Code:
    #define LAUNCHER_ERROR       0x
    #define ABNORMAL_ACTIVITY    0x
    #define GAMEGUARDEROR1       0x
    #define GAMEGUARDEROR2       0x
    Do the edit/beta bypass.
    Code:
    VOID BetaBypass()
    {while(1){
    memcpy((PVOID) (LAUNCHER_ERROR),     (PVOID) "\xEB\x38", 2);
    memcpy((PVOID) (ABNORMAL_ACTIVITY), (PVOID) "\x0F\x84", 2);
    memcpy((PVOID) (GAMEGUARDEROR1),    (PVOID) "\x55\x07", 2);
    memcpy((PVOID) (GAMEGUARDEROR2),    (PVOID) "\x75\x0A", 2);
    }}
    After the beta bypass, we can kill now the GameGuard without the LAUNCHER ERROR!
    Killproc,
    Code:
    void KillGG(const char *processName) {
     HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPALL, NULL);
     PROCESSENTRY32 pEntry;
     pEntry.dwSize = sizeof(pEntry);
     BOOL hRes = Process32First(hSnapShot, &pEntry);
     while (hRes)
     { if (strcmp(pEntry.szExeFile, processName) == 0) { HANDLE hProcess = OpenProcess(PROCESS_TERMINATE, 0,
        (DWORD)pEntry.th32ProcessID);
       if (hProcess != NULL)
       {
        TerminateProcess(hProcess, 9);
        CloseHandle(hProcess);
       }} hRes = Process32Next(hSnapShot, &pEntry);} CloseHandle(hSnapShot);}
    Do the kill.
    Code:
    void KillGGNow() {
     while (1) {
      KillGG("GameGuard.des");
      KillGG("GameMon.des");
      KillGG("GameMon64.des");
      Sleep(200);}}
    and now, add this to your DLL main.
    Code:
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)BetaBypass, NULL, NULL, NULL);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)KillGGNow, NULL, NULL, NULL);
     

    Killprocess Source
    Brandon
    @Arcton
    Look a little same in my own code but great release
    ᚛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. #3
    justinrain's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    2
    My Mood
    Angelic
    SO is any bypass working?

  5. #4
    XiaoTeax's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    287
    Reputation
    10
    Thanks
    58
    My Mood
    Bored
    Does this work on C sharp?

  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 XiaoTeax View Post
    Does this work on C sharp?
    Maybe if you reverse the code
    ᚛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
    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 justinrain View Post
    SO is any bypass working?
    There is no bypass working right now
    ᚛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 !



  8. The Following User Says Thank You to COD3RIN For This Useful Post:

    Fragwired1 (12-23-2014)

  9. #7
    astron51's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Stuttgart, Germany
    Posts
    618
    Reputation
    57
    Thanks
    4,939
    My Mood
    Dead
    @COD3RIN @Jhem

    there is a pEntry error in my C++ project by using this code X_X can you help me with this error?
    Last edited by astron51; 09-26-2014 at 08:31 PM.

    Quote Originally Posted by Aula View Post
    FaQ2: Will my Main account will get ban?
    -Hell yeah . Who ask u to use this 3rd party program on ur main account ? Fcking Idiot .

    Get 100 Thanks - ✔
    Get 200 Thanks - ✔
    Get 300 Thanks - ✔
    Get 400 Thanks - ✔
    Get 500 Thanks - ✔
    Get 600 Thanks - ✔
    Get 700 Thanks - ✔
    Get 800 Thanks - ✔
    Get 900 Thanks - ✔
    Get 1000 Thanks - ✔
    Get 1500 Thanks - ✔
    Get 2000 Thanks - ✔
    Get 2500 Thanks - ✔
    Achievement Completed.

  10. #8
    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 astron51 View Post
    @COD3RIN @Jhem

    there is a pEntry error in my C++ project by using this code X_X can you help me with this error?
    you need to bool WANAPI Dllnain
    ᚛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. The Following User Says Thank You to COD3RIN For This Useful Post:

    astron51 (09-26-2014)

  12. #9
    astron51's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Stuttgart, Germany
    Posts
    618
    Reputation
    57
    Thanks
    4,939
    My Mood
    Dead
    Quote Originally Posted by COD3RIN View Post

    you need to bool WANAPI Dllnain
    ok thanks :P

    Quote Originally Posted by Aula View Post
    FaQ2: Will my Main account will get ban?
    -Hell yeah . Who ask u to use this 3rd party program on ur main account ? Fcking Idiot .

    Get 100 Thanks - ✔
    Get 200 Thanks - ✔
    Get 300 Thanks - ✔
    Get 400 Thanks - ✔
    Get 500 Thanks - ✔
    Get 600 Thanks - ✔
    Get 700 Thanks - ✔
    Get 800 Thanks - ✔
    Get 900 Thanks - ✔
    Get 1000 Thanks - ✔
    Get 1500 Thanks - ✔
    Get 2000 Thanks - ✔
    Get 2500 Thanks - ✔
    Achievement Completed.

  13. #10
    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 Jhem View Post
    GameGuard Beta Bypass C++ [Source]

    Some of them, use a CE to change/edit the value of the address and it's pretty tired to use it so I decide to release this source to keep your time from wasting from a lot of work etc... etc...

    First inlcude the following code.
    Code:
    #include <Windows.h>
    #include <process.h>
    #include <Tlhelp32.h>
    #include <winbase.h>
    #include <string.h>
    Must be have a updated address.
    Code:
    #define LAUNCHER_ERROR       0x
    #define ABNORMAL_ACTIVITY    0x
    #define GAMEGUARDEROR1       0x
    #define GAMEGUARDEROR2       0x
    Do the edit/beta bypass.
    Code:
    VOID BetaBypass()
    {while(1){
    memcpy((PVOID) (LAUNCHER_ERROR),     (PVOID) "\xEB\x38", 2);
    memcpy((PVOID) (ABNORMAL_ACTIVITY), (PVOID) "\x0F\x84", 2);
    memcpy((PVOID) (GAMEGUARDEROR1),    (PVOID) "\x55\x07", 2);
    memcpy((PVOID) (GAMEGUARDEROR2),    (PVOID) "\x75\x0A", 2);
    }}
    After the beta bypass, we can kill now the GameGuard without the LAUNCHER ERROR!
    Killproc,
    Code:
    void KillGG(const char *processName) {
     HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPALL, NULL);
     PROCESSENTRY32 pEntry;
     pEntry.dwSize = sizeof(pEntry);
     BOOL hRes = Process32First(hSnapShot, &pEntry);
     while (hRes)
     { if (strcmp(pEntry.szExeFile, processName) == 0) { HANDLE hProcess = OpenProcess(PROCESS_TERMINATE, 0,
        (DWORD)pEntry.th32ProcessID);
       if (hProcess != NULL)
       {
        TerminateProcess(hProcess, 9);
        CloseHandle(hProcess);
       }} hRes = Process32Next(hSnapShot, &pEntry);} CloseHandle(hSnapShot);}
    Do the kill.
    Code:
    void KillGGNow() {
     while (1) {
      KillGG("GameGuard.des");
      KillGG("GameMon.des");
      KillGG("GameMon64.des");
      Sleep(200);}}
    and now, add this to your DLL main.
    Code:
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)BetaBypass, NULL, NULL, NULL);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)KillGGNow, NULL, NULL, NULL);
     

    Killprocess Source
    Brandon
    @Arcton
    I am Brandon...


    Mess with the best, die like the rest.


  14. The Following 3 Users Say Thank You to Caezer99 For This Useful Post:

    Ray (09-29-2014),iraj1403 (12-09-2014),rocknot66 (10-09-2014)

  15. #11
    Threadstarter
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,391
    My Mood
    Stressed
    Quote Originally Posted by Caezer99 View Post
    I am Brandon...
    Well, credits to you.

  16. #12
    rrj3023's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Hi, i'm new here. how to used this code?

  17. #13
    Threadstarter
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,391
    My Mood
    Stressed
    Quote Originally Posted by rrj3023 View Post
    Hi, i'm new here. how to used this code?
    Create a c++ project else learn c++.

  18. #14
    arepizt92's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    In your cpu
    Posts
    9
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    Wow, great release ... thank

  19. #15
    KKrysis˛'s Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Dildo™
    Posts
    1,166
    Reputation
    10
    Thanks
    2,830
    My Mood
    Inspired
    Use What Program To Do This?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Request] GameGuard 1492 Bypass?
    By Natasya in forum Hack Requests
    Replies: 0
    Last Post: 02-06-2011, 12:03 PM
  2. [Release] MS CRC Bypass with Source (gMS v0.90+)
    By iContribute in forum MapleStory Hacks, Cheats & Trainers
    Replies: 19
    Last Post: 10-31-2010, 03:18 AM
  3. XTRAP bypass REQUEST source
    By ludikrimos in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 7
    Last Post: 09-28-2010, 09:20 AM
  4. [Menu Bypass]My Beta bypass
    By NOOBJr in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 42
    Last Post: 09-09-2010, 10:22 AM
  5. [Release] (Beta)- Bypass
    By lolz2much in forum Combat Arms Hacks & Cheats
    Replies: 74
    Last Post: 09-30-2009, 07:03 PM