Page 2 of 2 FirstFirst 12
Results 16 to 16 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. #16
    ZJBx's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1
    PLEASE MAKE A HACK OF MAT 2

Page 2 of 2 FirstFirst 12

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