Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Toymaker's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Hannah, Montana
    Posts
    659
    Reputation
    14
    Thanks
    193
    My Mood
    Amused

    [Tutorial] Gamehacking 101

    [Tutorial] Gamehacking 101
    by Toymaker

    To Get Started:
    - Download Cheat Engine
    - Download OllyDBG ver 10
    - Download Game (Attached)
    - Download Bloodshev Dev-C++

    Step 1. You should understand what you're looking for by playing the game once. You'll notice you and your opponent fight until someone runs out of health points so a good hack feature would be preventing your health from decreasing. I'll paste the code for the game as well so you can get an idea of how programs break down into ASM in memory.

    Code:
    #include <iostream>
    using namespace std;
    int uhp = 100;
    int usp = 10;
    int mp = 100;
    int ms = 10;
    int turn = 1;
    int atk;
    int dmg;
    int main() {
        system("title TBG");
    while ( uhp > 0 ) {
          //if findwindow here would own haha =D have 
    
    to be hacked etc
          if ( turn == 1 ) {
               turn--;
               cout<<"It is YOUR turn hero.n";
               cout<<"Your HP is: "<<uhp<<"n";
               cout<<"Your SP is: "<<usp<<"n";
               cout<<"Decide Your Next Moven";
               cout<<"1. Punch(10 DMG 0 SP)n";
               cout<<"2. Psyki(20 DMG 5 SP)n";
               cin>>atk;
               if ( atk == 1 ) {
               dmg = 10;
               cout<<"You do: "<<dmg<<" DMGn";
               mp = mp - dmg;
               cout<<"Monstr Life: "<<mp<<"n";
               }
               else {
               dmg = 20;
               cout<<"You do: "<<dmg<<" DMGn";
               mp = mp - dmg;
               usp = usp - 5;
               cout<<"Monstr Life: "<<mp<<"n";
               }
               if ( turn == 0 ) {
                    turn++;
                    cout<<"Computer AIs Turnn";
                    cout<<"Computer Hits Youn";
                    cout<<"Suffer: 10 Damagen";
                    uhp = uhp - 10;
                    cout<<"New HP: "<<uhp<<"n";
                    }
                    if ( mp < 5 ) { 
                         cout<<"You Just Wonn";
                         system("pause");
                         exit(0);
                    }
                    }
                    }
                    cout<<"Thanks For Playinn";
                    system("pause");
                    }
    Step 2. Now that you've played the game and even got an extra boost by seeing it's C++ encoding. It's time to start hacking. Load The Game and Cheat Engine.You need to, in cheat engine, select 'Process' option in the file menu and attach the game -TBG.exe. You are now ready to start tracing
    memory. In the game you see:

    It is YOUR turn hero.
    Your HP is: 100
    Your SP is: 10
    Decide Your Next Move
    1. Punch(10 DMG 0 SP)
    2. Psyki(20 DMG 5 SP)
    You should go ahead and select 1 and press enter. You notice you attack the opponent and his health lowers and he automatically attacks you back and you lose health. You are at 90 HP now. In cheat engine in the VALUE: textbox, enter 90 and press enter. On the left of cheat engine you'll notice four addresses appear:

    0043F000 90
    0043F008 90
    77C60094 90
    77C626FA 90
    You want to go back to the game and take damage two more times so you're sure which of these addresses are specifically holding your health points. If you just keep selecting 1 you'll take equal damage but if you press 2 the enemy loses 20hp and you only lose 10hp still. You'll see your health address is:

    0043F000
    Double click it so it appears at the bottom of your Cheat Engine. Right click the adress and select 'find out what writes to this address,' and press
    'YES.' A box pops up, go back to the game and hit the enemy again to get hit. Come back and you see:

    0040161E ... sub ...0A
    You've know found the actual offset in game memory that handles your health decreasing. Instead of just the address holding your health's value which in most games will be different everytime you load the game thanks to Dynamic Memory Allocation. You notice SUB means subtract and 0A is hexadecimal for 10 Decimal? Now, close everything, re-open the game, open OllyDBG, file - attach - TBG.exe.


    Step 3. In OllyDBG with the TBG.exe attached. Press the [<<] black button at the top below 'File' that is labeled 'REWIND,' and select 'OK.' You have no rewound the program and logged it's loading memory. You simply need to scroll down a little ways in Olly and you find the C++ Main() function where
    it's all coded!

    Code:
    00401390  /$ 55                      PUSH EBP
    00401391  |. 89E5                    MOV EBP,ESP
    00401393  |. 83EC 18                 SUB ESP,18
    00401396  |. 83E4 F0                 AND 
    ESP,FFFFFFF0
    00401399  |. B8 00000000             MOV EAX,0
    0040139E  |. 83C0 0F                 ADD EAX,0F
    004013A1  |. 83C0 0F                 ADD EAX,0F
    004013A4  |. C1E8 04                 SHR EAX,4
    004013A7  |. C1E0 04                 SHL EAX,4
    004013AA  |. 8945 FC                 MOV DWORD PTR 
    SS:[EBP-4],EAX
    004013AD  |. 8B45 FC                 MOV EAX,DWORD 
    PTR SS:[EBP-4]
    004013B0  |. E8 ABBF0000             CALL 
    TBG.0040D360
    004013B5  |. E8 E6BB0000             CALL 
    TBG.0040CFA0
    004013BA  |. C70424 00004400         MOV DWORD PTR 
    SS:[ESP],TBG.00440000               ; |ASCII "title 
    TBG"
    004013C1  |. E8 9AF50000             CALL 
    <JMP.&msvcrt.system>                         ; 
    system
    004013C6  |> 833D 00F04300 00        /CMP DWORD PTR 
    DS:[43F000],0
    004013CD  |. 0F8E C1020000           |JLE 
    TBG.00401694
    004013D3  |. 833D 10F04300 01        |CMP DWORD PTR 
    DS:[43F010],1
    004013DA  |.^75 EA                   |JNZ SHORT 
    TBG.004013C6
    004013DC  |. FF0D 10F04300           |DEC DWORD PTR 
    DS:[43F010]
    004013E2  |. C74424 04 0A004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044000A            ;  ASCII "It is 
    YOUR turn hero.
    "
    004013EA  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    004013F1  |. E8 52AF0300             |CALL 
    TBG.0043C348
    004013F6  |. C74424 04 21004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00440021            ;  ASCII "Your 
    HP is: "
    004013FE  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401405  |. E8 3EAF0300             |CALL 
    TBG.0043C348
    0040140A  |. 89C2                    |MOV EDX,EAX
    0040140C  |. A1 00F04300             |MOV EAX,DWORD 
    PTR DS:[43F000]
    00401411  |. 894424 04               |MOV DWORD PTR 
    SS:[ESP+4],EAX
    00401415  |. 891424                  |MOV DWORD PTR 
    SS:[ESP],EDX
    00401418  |. E8 C39C0200             |CALL 
    TBG.0042B0E0
    0040141D  |. C74424 04 2E004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044002E
    00401425  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    00401428  |. E8 1BAF0300             |CALL 
    TBG.0043C348
    0040142D  |. C74424 04 30004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00440030            ;  ASCII "Your 
    SP is: "
    00401435  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    0040143C  |. E8 07AF0300             |CALL 
    TBG.0043C348
    00401441  |. 89C2                    |MOV EDX,EAX
    00401443  |. A1 04F04300             |MOV EAX,DWORD 
    PTR DS:[43F004]
    00401448  |. 894424 04               |MOV DWORD PTR 
    SS:[ESP+4],EAX
    0040144C  |. 891424                  |MOV DWORD PTR 
    SS:[ESP],EDX
    0040144F  |. E8 8C9C0200             |CALL 
    TBG.0042B0E0
    00401454  |. C74424 04 2E004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044002E
    0040145C  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    0040145F  |. E8 E4AE0300             |CALL 
    TBG.0043C348
    00401464  |. C74424 04 3D004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044003D            ;  ASCII "Decide 
    Your Next Move
    "
    0040146C  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401473  |. E8 D0AE0300             |CALL 
    
    TBG.0043C348
    00401478  |. C74424 04 54004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00440054            ;  ASCII "1. 
    Punch(10 DMG 0 SP)
    "
    00401480  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401487  |. E8 BCAE0300             |CALL 
    TBG.0043C348
    0040148C  |. C74424 04 6B004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044006B            ;  ASCII "2. 
    Psyki(20 DMG 5 SP)
    "
    00401494  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    0040149B  |. E8 A8AE0300             |CALL 
    TBG.0043C348
    004014A0  |. C74424 04 10304400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00443010
    004014A8  |. C70424 70344400         |MOV DWORD PTR 
    SS:[ESP],TBG.00443470
    004014AF  |. E8 5C6F0200             |CALL 
    TBG.00428410
    004014B4  |. 833D 10304400 01        |CMP DWORD PTR 
    DS:[443010],1
    004014BB  |. 0F85 88000000           |JNZ 
    TBG.00401549
    004014C1  |. C705 14304400 0A000000  |MOV DWORD PTR 
    DS:[443014],0A
    004014CB  |. C74424 04 82004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00440082            ;  ASCII "You 
    do: "
    004014D3  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    004014DA  |. E8 69AE0300             |CALL 
    TBG.0043C348
    004014DF  |. 89C2                    |MOV EDX,EAX
    004014E1  |. A1 14304400             |MOV EAX,DWORD 
    PTR DS:[443014]
    004014E6  |. 894424 04               |MOV DWORD PTR 
    SS:[ESP+4],EAX
    004014EA  |. 891424                  |MOV DWORD PTR 
    SS:[ESP],EDX
    004014ED  |. E8 EE9B0200             |CALL 
    TBG.0042B0E0
    004014F2  |. C74424 04 8B004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044008B            ;  ASCII " DMG
    "
    004014FA  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    004014FD  |. E8 46AE0300             |CALL 
    
    TBG.0043C348
    00401502  |. A1 14304400             |MOV EAX,DWORD 
    PTR DS:[443014]
    00401507  |. 2905 08F04300           |SUB DWORD PTR 
    DS:[43F008],EAX
    0040150D  |. C74424 04 91004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00440091            ;  ASCII "Monstr 
    Life: "
    00401515  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    0040151C  |. E8 27AE0300             |CALL 
    TBG.0043C348
    00401521  |. 89C2                    |MOV EDX,EAX
    00401523  |. A1 08F04300             |MOV EAX,DWORD 
    PTR DS:[43F008]
    00401528  |. 894424 04               |MOV DWORD PTR 
    SS:[ESP+4],EAX
    0040152C  |. 891424                  |MOV DWORD PTR 
    SS:[ESP],EDX
    0040152F  |. E8 AC9B0200             |CALL 
    TBG.0042B0E0
    00401534  |. C74424 04 2E004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044002E
    0040153C  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    0040153F  |. E8 04AE0300             |CALL 
    TBG.0043C348
    00401544  |. E9 8A000000             |JMP 
    TBG.004015D3
    00401549  |> C705 14304400 14000000  |MOV DWORD PTR 
    DS:[443014],14
    00401553  |. C74424 04 82004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00440082            ;  ASCII "You 
    do: "
    0040155B  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401562  |. E8 E1AD0300             |CALL 
    TBG.0043C348
    00401567  |. 89C2                    |MOV EDX,EAX
    00401569  |. A1 14304400             |MOV EAX,DWORD 
    PTR DS:[443014]
    0040156E  |. 894424 04               |MOV DWORD PTR 
    SS:[ESP+4],EAX
    00401572  |. 891424                  |MOV DWORD PTR 
    SS:[ESP],EDX
    00401575  |. E8 669B0200             |CALL 
    TBG.0042B0E0
    0040157A  |. C74424 04 8B004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044008B            ;  ASCII " DMG
    "
    00401582  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    00401585  |. E8 BEAD0300             |CALL 
    TBG.0043C348
    0040158A  |. A1 14304400             |MOV EAX,DWORD 
    PTR DS:[443014]
    0040158F  |. 2905 08F04300           |SUB DWORD PTR 
    DS:[43F008],EAX
    00401595  |. 832D 04F04300 05        |SUB DWORD PTR 
    DS:[43F004],5
    0040159C  |. C74424 04 91004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.00440091            ;  ASCII "Monstr 
    Life: "
    004015A4  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    004015AB  |. E8 98AD0300             |CALL 
    TBG.0043C348
    004015B0  |. 89C2                    |MOV EDX,EAX
    004015B2  |. A1 08F04300             |MOV EAX,DWORD 
    PTR DS:[43F008]
    004015B7  |. 894424 04               |MOV DWORD PTR 
    SS:[ESP+4],EAX
    004015BB  |. 891424                  |MOV DWORD PTR 
    SS:[ESP],EDX
    004015BE  |. E8 1D9B0200             |CALL 
    TBG.0042B0E0
    004015C3  |. C74424 04 2E004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044002E
    004015CB  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    004015CE  |. E8 75AD0300             |CALL 
    TBG.0043C348
    004015D3  |> 833D 10F04300 00        |CMP DWORD PTR 
    DS:[43F010],0
    004015DA  |. 75 7F                   |JNZ SHORT 
    TBG.0040165B
    004015DC  |. FF05 10F04300           |INC DWORD PTR 
    DS:[43F010]
    004015E2  |. C74424 04 9F004400      |MOV DWORD PTR 
    
    SS:[ESP+4],TBG.0044009F            ;  ASCII 
    
    "Computer AIs Turn
    "
    004015EA  |. C70424 D0334400         |MOV DWORD PTR 
    
    SS:[ESP],TBG.004433D0
    004015F1  |. E8 52AD0300             |CALL 
    
    TBG.0043C348
    004015F6  |. C74424 04 B2004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.004400B2            ;  ASCII 
    "Computer Hits You
    "
    004015FE  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401605  |. E8 3EAD0300             |CALL 
    
    TBG.0043C348
    0040160A  |. C74424 04 C5004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.004400C5            ;  ASCII 
    "Suffer: 10 Damage
    "
    00401612  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401619  |. E8 2AAD0300             |CALL 
    TBG.0043C348
    0040161E |. 832D 00F04300 0A        |SUB DWORD PTR 
    DS:[43F000],0A
    00401625  |. C74424 04 D8004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.004400D8            ;  ASCII "New 
    HP: "
    0040162D  |. C70424 D0334400         |MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401634  |. E8 0FAD0300             |CALL 
    TBG.0043C348
    00401639  |. 8B15 00F04300           |MOV EDX,DWORD 
    PTR DS:[43F000]
    0040163F  |. 895424 04               |MOV DWORD PTR 
    
    SS:[ESP+4],EDX
    00401643  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    00401646  |. E8 959A0200             |CALL 
    TBG.0042B0E0
    0040164B  |. C74424 04 2E004400      |MOV DWORD PTR 
    SS:[ESP+4],TBG.0044002E
    00401653  |. 890424                  |MOV DWORD PTR 
    SS:[ESP],EAX
    00401656  |. E8 EDAC0300             |CALL 
    TBG.0043C348
    0040165B  |> 833D 08F04300 04        |CMP DWORD PTR 
    DS:[43F008],4
    00401662  |.^0F8F 5EFDFFFF           JG 
    TBG.004013C6
    00401668  |. C74424 04 E1004400      MOV DWORD PTR 
    SS:[ESP+4],TBG.004400E1             ;  ASCII "You 
    Just Won"
    00401670  |. C70424 D0334400         MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    00401677  |. E8 CCAC0300             CALL 
    TBG.0043C348
    0040167C  |. C70424 EF004400         MOV DWORD PTR 
    SS:[ESP],TBG.004400EF               ; ||ASCII 
    "pause"
    00401683  |. E8 D8F20000             CALL 
    <JMP.&msvcrt.system>                         ; 
    |system
    00401688  |. C70424 00000000         MOV DWORD PTR 
    SS:[ESP],0                          ; |
    0040168F  |. E8 BCF20000             CALL 
    <JMP.&msvcrt.exit>                           ; 
    exit
    00401694  |> C74424 04 F5004400      MOV DWORD PTR 
    SS:[ESP+4],TBG.004400F5             ;  ASCII 
    "Thanks For Playin
    "
    0040169C  |. C70424 D0334400         MOV DWORD PTR 
    SS:[ESP],TBG.004433D0
    004016A3  |. E8 A0AC0300             CALL 
    TBG.0043C348
    004016A8  |. C70424 EF004400         MOV DWORD PTR 
    SS:[ESP],TBG.004400EF               ; |ASCII 
    "pause"
    004016AF  |. E8 ACF20000             CALL 
    <JMP.&msvcrt.system>                         ; 
    system
    004016B4  |. B8 00000000             MOV EAX,0
    004016B9  |. C9                      LEAVE
    004016BA  . C3                      RETN
    Step 4. You are now looking at the assembly version of your C++ coding in memory execution. You notice key parts are labeld with ASCII ; such as 'Monster Life.' I just wanted to show you this rewind trick but really now what you need to do is press CTLR+G so the 'Goto Expression' box pops up. Enter that offset we found and press search:

    0040161E |. 832D 00F04300 0A |SUB DWORD PTR
    DS:[43F000],0A
    You are now at that location and we will be testing a hack method. How about instead of losing (SUBtracing) health your game increases (ADDing) your health each time you're attacked? Simply press the space bar, with this line highlighted, and you see the memory as is. JUST CHANGE 'SUB' to 'ADD. Now press F9 in olly so the game is running again. Go to the game. Attack a few times. Notice your HP continues to increase. You hacked it.

    New HP: 110
    Now looking back in Olly you see only 1 byte of memory actually turned RED right? It's the one in the line that represents ADD. The offset 40161E starts with 83 and beings 0% is teh next byte you're actual hack code is:

    Code:
    0040161F 05
    Step 5. You can now open your Bloodshev Dev-C++ compiler and paste in the injection code notice you change the offset and byte and window name to match correctly.

    Code:
    #include <windows.h>
    #include <iostream>
    using namespace std;
    HWND hHack=FindWindow(NULL,"TBG");
    void write(LPVOID addy, DWORD mydata);
    void adddebugtokens();
    void calltohack();
    int main() {
        if(!hHack)
        {
            cout << "Window not found" << endl;
            system("pause");
            exit(0);
        }
    	cout << "Loading Hack" << endl;  
    	enableDebugPrivileges();
        calltohack();          
        system("pause");
      }
    
    
    
    void write(LPVOID addy, DWORD mydata)
    {
        DWORD PID, TID;
        TID = ::GetWindowThreadProcessId (hHack, &PID);
        HANDLE hopen=OpenProcess( 
    
    PROCESS_ALL_ACCESS|PROCESS_TERMINATE|PROCESS_VM_OPE
    
    RATION|PROCESS_VM_READ|
                      PROCESS_VM_WRITE,FALSE,PID);
    
        WriteProcessMemory(hopen,addy,&mydata,1,0);
        CloseHandle(hopen);  
    }
    
    void adddebugtokens()
    {
        HANDLE hcurrent=GetCurrentProcess();
        HANDLE hToken;
        BOOL 
    
    bret=OpenProcessToken(hcurrent,40,&hToken);
        LUID luid;
        
    
    bret=LookupPrivilegeValue(NULL,"SeDebugPrivilege",&
    
    luid);
        TOKEN_PRIVILEGES NewState,PreviousState;
        DWORD ReturnLength;
        NewState.PrivilegeCount =1;
        NewState.Privileges[0].Luid =luid;
        NewState.Privileges[0].Attributes=2;
        
    
    AdjustTokenPrivileges(hToken,FALSE,&NewState,28,&Pr
    
    eviousState,&ReturnLength);
    }
    
    void calltohack()
    {
        	write((LPVOID)0x0040161F, 0x05);
    }

    Step 6. You can now enjoy your working hack.exe and if you load the game and then the hack you will start gaining health points instead of losing them forever. Hope I helped.If you want to learn more, Like I add to all of my Tutorials, you should study how the C++ in Main() converterd to ASM in OllyDBG. Good luck.

    Step 7. Additional Feature Ideas:

    00401668 |. C74424 04 E1004400 MOV DWORD PTR
    SS:[ESP+4],TBG.004400E1 ; ASCII "You
    Just Won"
    You see this line? Notice the message "You Just Won" is pointed to by 004400E1. You could use a hex/ascii converter and get the hex coding for another phrase like "You have no life" and then write it to the offset 004400E1 and when playing the game the string "You Just Won" would be successfully replaced by that.
    Last edited by Toymaker; 04-17-2009 at 10:50 AM.

  2. The Following 119 Users Say Thank You to Toymaker For This Useful Post:

    ***JAMES*** (07-24-2009),..:Sasuke:.. (02-22-2011),AESEDE (04-02-2012),akbaba (03-24-2010),akram_abdo (12-15-2009),alex4mpg (05-22-2013),alexabcdef (09-25-2009),ali 92 (08-16-2010),APG-Fame (09-21-2011),ArgusNoyan (07-03-2015),Ariano2009 (10-20-2009),Arkanzilla (05-30-2011),AudiTT (02-11-2010),baraozin (07-22-2011),bilalmalik (03-15-2010),bitdevil (01-19-2015),black1ller (12-25-2009),BooYa (09-24-2009),botespiatorio (09-22-2012),butch2473 (10-30-2009),chelvan (05-05-2009),Cireva (08-24-2009),D4rkBalistiX (05-05-2017),darkirax (01-24-2010),death1o1 (11-13-2018),DHANte24 (08-23-2010),Drknezz (12-19-2010),ehsanjt98 (05-20-2011),elitexppro (11-02-2009),ferock180 (07-19-2009),FragInABox (09-07-2009),fuckyeah666 (11-05-2014),furqan1 (07-19-2009),generalflamey (05-23-2019),Ghost8631 (07-20-2011),H3ROICONE (08-24-2011),hbk (06-18-2009),homerun62 (04-17-2009),Hotsuma (04-24-2011),immortalxgod (01-11-2010),IPAWN (10-28-2009),jejune (07-27-2010),Johnleepower (02-19-2013),joop (06-01-2009),jorricks (05-15-2012),josephlwu (02-10-2010),Joshcarr2006 (06-15-2009),JRAYChisholm (07-13-2009),kedaxx (07-25-2009),kipper905 (07-07-2009),Kolak (12-26-2011),konn1 (05-21-2011),LeGioNeR (03-19-2010),limcss (08-08-2017),Lionel1232 (04-17-2012),Longard (12-07-2016),LoveMaster (04-14-2011),luckg (08-13-2009),Lysergide (09-17-2012),Make My Day (11-24-2009),manmark12 (09-30-2009),MarioDahacker (08-21-2009),martin_machi (11-26-2009),MatijaPx (09-11-2009),Meshuggah (06-26-2009),modernist86 (01-24-2012),mookamoka3 (01-01-2011),N3tsky (10-03-2012),Neocwon (08-13-2013),nepito (03-13-2010),nilfisk (10-11-2020),ohHi (11-08-2009),Olszaken (07-08-2011),osiel (09-26-2009),P4N1K (02-14-2012),Pam_ (10-21-2016),panicsfire (03-29-2018),pimpinallovertheworld666 (10-05-2009),PlSlYlClHlO (06-02-2009),PraDevil (05-27-2011),Predador_Design (12-29-2018),PunkAssGangster (11-08-2010),quota666 (04-10-2010),riduwan017 (10-28-2009),ruisu (05-24-2011),ryanterror (05-04-2009),salcorapilo (06-13-2019),sant (07-15-2010),Scorpione (03-29-2012),sebig3000 (01-15-2017),SenHacks (07-01-2012),shadow_spear (10-07-2009),shnarg (04-10-2010),sidfireking (08-16-2009),slickstanley (07-01-2010),Sniper7even (10-01-2011),soccerawe (11-06-2009),SomeOneSpecial (09-22-2009),SorrySniper (01-14-2011),spatarock (12-17-2010),stsyndrome (08-15-2020),superbarnie (07-28-2010),Suuuuuuuuuuuuuuuuuuuuuuuu (02-16-2012),TehOne (03-02-2010),terrlies (06-22-2009),thekm1994 (06-14-2010),todesteufl (10-18-2009),totszky (11-07-2011),Trane22 (01-07-2012),UltraMan (08-09-2012),unspeakable (10-14-2012),userscs (04-17-2009),WhyteLinux (01-24-2011),willnmisty (10-15-2015),wisdebesd (09-30-2009),Youtro (08-23-2013),zerozharif (09-25-2009),[code] (06-22-2009),___[.T.]___ (12-01-2010)

  3. #2
    hm1980's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    can you tell me where can i find the hack?

    ---------- Post added at 09:02 PM ---------- Previous post was at 08:44 PM ----------

    ty i found it

  4. #3
    xicensayijan's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    Hell
    Posts
    46
    Reputation
    10
    Thanks
    2
    My Mood
    Tired
    can u share some stuff like this for browser based flash games too??

  5. #4
    jorricks's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    4
    My Mood
    Amused
    This is a really nice tutorial looking forward to more (P.s. I need to do this for school so really helpfull )

    Edit:
    I would like to understand what you do every line so..
    Maybe you could give us some more info about what everything means.
    So like after every line a little explanation.
    Thx in advance
    Last edited by jorricks; 05-16-2012 at 03:39 AM.

  6. #5
    jorricks's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    4
    My Mood
    Amused
    It doesn't seem to work in MW3??
    The problem is that if I load it into OllyDbg it can't find the offset
    While I got the offset and everything
    What to do now?

  7. #6
    RedKoolAid's Avatar
    Join Date
    Aug 2012
    Gender
    female
    Posts
    88
    Reputation
    10
    Thanks
    13
    What do you mean by the Attached version?

  8. #7
    Johnleepower's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    882
    Reputation
    17
    Thanks
    1,425
    My Mood
    Happy
    Good tutorial now am motivated to create basic hack client but there is no attachments please add them

  9. #8
    alex4mpg's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    there is the source, for what do u need the attachments? Although the source is broken by the code formatting by this forum I guess, I had to clean up code a bit... But there are errors as well... For first I am getting a compiler error with enableDebugPrivileges() cos its undeclared... And I guess its the offset 0x0040161E and not 0x0040161F you have to write at the end in the hack... I tried to comment out the Privileges stuff but than nothing happens when I open up the hack... A hint what could be wrong? Is that a function of a lib, do I have to inlcude something else than windows.h and iostream? Or is it smth whats just not implemented yet?

  10. #9
    -*Koki-*'s Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    581
    Reputation
    54
    Thanks
    5,801
    great tutorial .......

  11. #10
    fuckyeah666's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    thx for the info. But there's just one questrian left. For which games does this work?

  12. #11
    Black's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Dave's Heart and/or Arun's Ballsack
    Posts
    3,463
    Reputation
    816
    Thanks
    2,682
    My Mood
    Fine
    Quote Originally Posted by fuckyeah666 View Post
    thx for the info. But there's just one questrian left. For which games does this work?
    Congratulations! you just re-opened a thread that has been inactive for over a year

  13. #12
    ryanyo007's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    10
    Quote Originally Posted by shaheet View Post
    Congratulations! you just re-opened a thread that has been inactive for over a year
    Congratz, me and u did too.

  14. #13
    Poar's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    1
    My Mood
    Inspired
    Now looking back in Olly you see only 1 byte of memory actually turned RED right? It's the one in the line that represents ADD. The offset 40161E starts with 83 and beings 0% is teh next byte you're actual hack code is:

    Code:
    0040161F 05
    How? Just how? How do you get 0040161F 05 from 40161E? What's with the "Starts with 83 and beings 0%..." -what does that mean?
    Anyway, it's a good tutorial.
    Thanks in advance.
    Last edited by Poar; 12-28-2014 at 05:29 AM.
    Oh, hello!

  15. #14
    David.'s Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    ก็็็็็็็็็็็็็&#
    Posts
    2,881
    Reputation
    556
    Thanks
    2,514
    My Mood
    Amazed
    Thanks For Info

  16. #15
    danilhandoko's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I already try this tutorial at web game like poker.but there is mesage "plugin container" and my browser aautomaticly closed.do you have any sugestion sir?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Tutorial] Change your IP to unban yourself
    By Super-Man in forum Game Hacking Tutorials
    Replies: 3
    Last Post: 10-13-2019, 03:33 AM
  2. Warrock Hack - Tutorial
    By Dave84311 in forum WarRock - International Hacks
    Replies: 667
    Last Post: 10-09-2007, 10:10 AM
  3. Gunz Hack - Tutorial
    By Dave84311 in forum General Game Hacking
    Replies: 12
    Last Post: 01-09-2006, 08:16 PM
  4. Replies: 3
    Last Post: 01-04-2006, 09:52 PM
  5. Photoshop Tutorials
    By Dave84311 in forum Art & Graphic Design
    Replies: 3
    Last Post: 12-31-2005, 07:21 AM

Tags for this Thread