Want to Join Us ?

you'll be able to discuss, share and send private messages.

Basic C++ Linux Game Hacking Tutorial

Discussion in 'Tutorials' started by GH_Rake, Feb 1, 2020.

Share This Page

  1. GH_Rake

    Member

    This is a video made by my friend matthew99g, he took our beginner C++ hack tutorial for Windows and he adapted it to work on Linux.
    • In this video you will learn to
    • Get the list of running processes
    • Find the game process id
    • Get the process base address
    • Read memory
    • Write memory
    • Unlimited ammo in Assault Cube
    Here is just a sample of int main()
    Code (Text):
    int main(const int argc, const char *argv[]) {
        const char szSignature[] = "\x48\x8b\x45\x28\x83\x28\x01\x48";
        char szOpCode[] = "\x90\x90\x90";
     
        // Code starts executing here...
        ProcessManager procManager("ac_client");
     
        // Launch Payload
        procManager.SignaturePayload(szSignature, szOpCode, strlen(szSignature), strlen(szOpCode), 64, 4);
     
     
        exit(EXIT_SUCCESS); // Terminate process
    }


    Enjoy

    https://guidedhacking.com/threads/c-linux-game-hacking-tutorial-external-1.13724/
     
    Last edited: Jul 19, 2020
    computerline and Rip Cord like this.
Top