Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    How to make hacks again (c++ dll injection)


    ZeaS
     Share

    Recommended Posts

    Hey ho, i will show you how easy it is to create new public hacks again (undetected) : ) (For any game)

     

    You just need 1 cpp, open your c++ programm (dll project) and just add 1 cpp, call it what ever you want then add this code..

     

    [ Hidden part. View original post. ]

     

     

    reply if you want to see it !!

     

    ~ZeaS

    Link to comment
    Share on other sites

    Hey ho, i will show you how easy it is to create new public hacks again (undetected) : ) (For any game)

     

    You just need 1 cpp, open your c++ programm (dll project) and just add 1 cpp, call it what ever you want then add this code..

     

    [ Hidden part. View original post. ]

     

     

    reply if you want to see it !!

     

    ~ZeaS

    Rep

    Replay

    Nice

    Link to comment
    Share on other sites

    Hey ho, i will show you how easy it is to create new public hacks again (undetected) : ) (For any game)

     

    You just need 1 cpp, open your c++ programm (dll project) and just add 1 cpp, call it what ever you want then add this code..

     

    [ Hidden part. View original post. ]

     

     

    reply if you want to see it !!

     

    ~ZeaS

    rep

    Link to comment
    Share on other sites

    Hey ho, i will show you how easy it is to create new public hacks again (undetected) : ) (For any game)

     

    You just need 1 cpp, open your c++ programm (dll project) and just add 1 cpp, call it what ever you want then add this code..

     

    [ Hidden part. View original post. ]

     

     

    reply if you want to see it !!

     

    ~ZeaS

    Link to comment
    Share on other sites

    Hey ho, i will show you how easy it is to create new public hacks again (undetected) : ) (For any game)

     

    You just need 1 cpp, open your c++ programm (dll project) and just add 1 cpp, call it what ever you want then add this code..

     

    [hide_me]

    /*
     Project : Dll Hack
     Author  : ZeaS
     Date	: 22.08.2008
    
     Credits :
    	 ZeaS
    	 uc-forum: For the Idea
    
     Information:
    	 This was written for DXT and GHB
    	 visit us at [url="http://www.dxth4x.com/"]http://www.dxth4x.com/[/url] and [url="http://www.ghbsys.net/"]http://www.ghbsys.net/[/url]
    */
    #include <stdio.h>
    #include <windows.h>
    
    DWORD *ingame= (DWORD*)0xPLAYERPOINTER;
    
    void Stamina()
    {
     if(*ingame) //check if we are ingame.. prevent crashs
     {
    	 DWORD *stam= (DWORD*)0xPLAYERPOINTER;
    	 DWORD *stam2= ( DWORD* )((*stam) + 0xOFFSET);
    	 *(float*)stam2 = (float)100;
     }
    }
    void HackThread()
    {
     for(;;)
     {
    	 Stamina();
    	 Sleep(21); //prevent for overloading the cpu
     }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
    {
     if(dwReason == DLL_PROCESS_ATTACH)
     {
    	 CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0); //create the hackthread
     }
     return TRUE;
    }

    [/hide_me]

     

     

    reply if you want to see it !!

     

    ~ZeaS

    Link to comment
    Share on other sites

    Hey ho, i will show you how easy it is to create new public hacks again (undetected) : ) (For any game)

     

    You just need 1 cpp, open your c++ programm (dll project) and just add 1 cpp, call it what ever you want then add this code..

     

    [ Hidden part. View original post. ]

     

     

    reply if you want to see it !!

     

    ~ZeaS

    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...