Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    jokimoto's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    <?php $Name='Harith'; echo' My Name Is '.$Name.'';?>
    Posts
    144
    Reputation
    14
    Thanks
    1,528
    My Mood
    Asleep

    How to Make Bypass Illegal C++

    IESTEAM RETURN

    Hey guys,it's me Harith ! Now i want teach you make illegal Bypass Using C++

    Source Code
    Code:
    //=====================================================================================================================================//
    // MAT CIB Bypass Illegal
    // Madde By Harith101 !
    //=====================================================================================================================================//
    
    #include <windows.h>
    #include <stdio.h>
    BYTE Bypass1[7] = {0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; / ON Bypass . Example code 
    
    BYTE Bypass11[7] = {0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; //Byte OFF Bypass .  Example code 
    
    
    LPTSTR COD = "MAT.exe"; // Target game
    
    void Patch(void *adr, void *ptr, int size)
    {
    DWORD NewProtection;
    VirtualProtect(adr,size,PAGE_EXECUTE_WRITECOPY, &NewProtection);
    memcpy(adr,ptr,size);
    VirtualProtect(adr,size,NewProtection, &NewProtection);
    }
    
    
    DWORD WINAPI LoopFunction(LPVOID param)
    {
    
    DWORD Addr = (DWORD)GetModuleHandleA(COD);
    {
    if (Addr > 0) {
    Addr = Addr + 0x000000; // example : MAT.exe+???? . only Take ???? .
    
    
    Patch((void *)(Addr ),(void*)(PBYTE)Bypass11, 7); //Byte ON Bypass
    
    Sleep(100);
    Patch((void *)(Addr ),(void*)(PBYTE)Bypass1, 7); // Byte OFF Bypass
    
    }
    Sleep(10);
    return (0);
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved ) 
    {
    
    DisableThreadLibraryCalls(hDll);
    MessageBox(0, "Made By\n Harith101\n Combodia Hacker","Ulalala",MB_OK +  MB_ICONINFORMATION);
    if (dwReason == DLL_PROCESS_ATTACH) {
    CreateThread(0, 0, LoopFunction, 0, 0, 0);
    }
    return TRUE;
    
    char strDLLName [_MAX_PATH];
    GetModuleFileName(hDll, strDLLName , _MAX_PATH);
    
    if (strstr(strDLLName,"DLLNAME.dll") <= 0) {
    
    MessageBox(0, "Windows scanner Anti Rename DLL \nDLL name : DLLNAME.dll\nSistem has ERROR Debug 404","DLL Error", MB_OK + MB_ICONSTOP );
    MessageBox(0,"DLL Detected ! ","DLL Error",MB_ICONERROR);
    ExitProcess(1);
        }    
        return TRUE;
    }
    Copy and Paste Code into C++ . Then Edit Yourself .. Array Of Byte Only ok

    Greetz to : Harith101 And All Member
    Last edited by jokimoto; 08-31-2014 at 07:13 PM. Reason: Ulala

    - HARITH101 -
    WhoAmI ?
    Click Here


    • #Kuso
    • #Bux
    • #Hafiz
    • #CyberTeamRox
    • #MalaysiaGOV


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

    COD3RIN (09-02-2014),jearjing_0808 (12-02-2014),pusongbato (09-09-2014),WhiteHat PH (11-30-2014)

  3. #2
    chuy2014's Avatar
    Join Date
    Jun 2014
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    32 or 64 bits ?

  4. #3
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    This is great source code to use
    ᚛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. #4
    Mikuvergil01's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    teach me full about this code i dont know how to use it.

  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 Mikuvergil01 View Post
    teach me full about this code i dont know how to use it.
    Learn c++ to do this
    ᚛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
    jokimoto's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    <?php $Name='Harith'; echo' My Name Is '.$Name.'';?>
    Posts
    144
    Reputation
    14
    Thanks
    1,528
    My Mood
    Asleep
    Quote Originally Posted by COD3RIN View Post
    This is great source code to use
    Thanks

    - HARITH101 -
    WhoAmI ?
    Click Here


    • #Kuso
    • #Bux
    • #Hafiz
    • #CyberTeamRox
    • #MalaysiaGOV


  8. #7
    pusongbato's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    at Perez Residence
    Posts
    585
    Reputation
    10
    Thanks
    2,128
    @jokimoto I have a question, can you explain to me why your using PAGE_EXECUTE_WRITECOPY instead of using PAGE_EXECUTE_READWRITE or PAGE_READWRITE

  9. #8

  10. #9
    promat90's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    thanks for share

  11. #10
    agung696's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    i need video tutorial please help me , sorry iam bad english

  12. #11
    BM43's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Where to put this ?

  13. #12
    IWantToHackGames's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    None of yo Daaaang Buznaz
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Bashful
    Can you guys make a video tutorial im not that good with c++

  14. #13
    devilsean72's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    Malaysia
    Posts
    48
    Reputation
    10
    Thanks
    6
    My Mood
    Devilish
    Thanks for tutorial !!
    PIKACHUUUUUUU DANCE

    " I play Hack For Fun ,
    NOT need hack to play "



    BlackShot Online Melee Grand Master archieve

  15. #14
    urikpro64's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    32 bit or 64 bit?

  16. #15
    Skaterforeva1's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Up your ass
    Posts
    936
    Reputation
    32
    Thanks
    485
    My Mood
    Psychedelic
    Wait okay so i'm stonned so excuse my typos but do I have to change and array or are they correct when you said "Then Edit Yourself .. Array Of Byte Only ok "? I'm a little confused.

    /Edit

    Just noticed the byte my bad i didn't even look at them sorry.
    Last edited by Skaterforeva1; 12-10-2014 at 08:43 PM. Reason: Stupidity




    ^Suck it!

Page 1 of 2 12 LastLast

Similar Threads

  1. [Tutorial] How to make Bypass Gamguard MAT online Ollydbg to address
    By CrazCyber in forum Mission Against Terror Hacks & Cheats
    Replies: 4
    Last Post: 07-02-2013, 06:14 AM
  2. [Discussion] How to make bypass not be patch
    By kindabella1 in forum Mission Against Terror Discussions
    Replies: 0
    Last Post: 01-05-2013, 10:19 AM
  3. How to make Bypass
    By mhcruz in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 12
    Last Post: 10-28-2012, 07:02 AM
  4. [Help] How Batte Eye Works And How To Make Bypass
    By positivopk in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 0
    Last Post: 10-28-2012, 12:56 AM
  5. how to make bypass[request]
    By crazykid401 in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 08-22-2008, 04:43 PM