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.

    C++ Hack Maker Tutorial By [ghb]


    NeoIII
     Share

    Recommended Posts

    • 3 weeks later...
    Willkommen zu meinem Tutorial "Wie mache ich in c++ einen Hack"!

    --------------------------------------------------------------------

     

    Was braucht ihr Dafuer?

     

    * Visual Studio 2003 .NET von http://D4rC.net/Neo/index.php?cmd=downloads

    * ghbPublic_Source.rar

    --------------------------------------------------------------------

     

    Wie gehts weiter?

     

    Nun öffnet ihr das ganze indem ihr auf 1.jpg Doppelklickt!

     

    nun sollte das ganze öffnen um nun einzelne Dateien Anzuschauen sucht nach einem Tool namens Solution Explorer!

    Sieht so aus: 2.jpg

     

    Da Öffnet ihr euch die wichtigsten dateien des projects:

     

    * Form1.h (Code & Style Ansicht)

    * Form1.cpp

    * form_funcs.h

     

    Dieser Source Code ist bereits eine fertige vorlage und einsatzfähig !!! ABER die Adressen sind alle alt !!!

     

    Versucht zu Verstehen was was ist!

     

    um adressen einzufügen zb von CE müsst ihr das 00 entfernen und durch 0x ersetzen!

    Pointer werden so geused:

     

    Form1.h

    --------------------------------------------------------------------

    memcpy_ev( ( void* )( ( GetPointer( ) ) + 0x180 ), &cvar.mf_superjump, sizeof( float ) );

    --------------------------------------------------------------------

    Form1.cpp

    --------------------------------------------------------------------

    int Get_Handle()

    {

    DWORD proc_id = 0;

    if( hWarRock != NULL )return (int)hWarRock;

    hWnd = FindWindow( "WarRock", 0 );

    if( hWnd == NULL )return NULL;

    GetWindowThreadProcessId( hWnd, &proc_id );

    return (int)OpenProcess( PROCESS_ALL_ACCESS, false, proc_id );

    }

    void *memcpy_ex( void* pxAddress, void* pxBuffer, unsigned long sxSize )

    {

    DWORD dzy = 0;

    if( WriteProcessMemory( (HANDLE)Get_Handle( ), pxAddress, pxBuffer, sxSize, &dzy ) == TRUE )

    {

    return pxAddress;

    }

    return NULL;

    }

     

    unsigned long GetPointer( )

    {

    DWORD dzy, dzRead = 0;

    if( ReadProcessMemory( ( HANDLE )Get_Handle( ), ( void* )0x008B5288, &dzy, sizeof( DWORD ), &dzRead ) == TRUE )

    {

    return dzy;

    }

    return 0;

    }

    --------------------------------------------------------------------

    form_funcs.h

    --------------------------------------------------------------------

    int Get_Handle();

    void *memcpy_ev( void* pxAddress, void* pxBuffer, unsigned long sxSize );

    unsigned long GetPointer( );

    --------------------------------------------------------------------

     

    So das wäre der Code alles Wichtige ist ROT Makiert, in der Form1.h komt das offset rein ( 0x180 (alt)) und Form1.cpp bei GetPointer() function das ist die Player Pointer Adresse!!!

     

    Nun noch wie ihr es undetected macht:

     

    Ich habe euch bei dem Code oben das hierfür wichtige GRÜN makiert, Ihr müsst nun in allen 3 Dateien diese Namen gleich ändern also ändert ihr Get_Handle auf wr_run dann müsst ihr das in denn anderen 2 dateien ebenfalls gleich umbenennen ( in Form1.h: je mehr hacks geaddet sind um so öfter kommt es zb vor GetHandle wird aber nur für timer gebraucht)

     

    nach umbennenen ist euer hack undetected (ausser ihr verwendet detected hacks wie GPS)

     

    so das wars mehr hab ich nicht dazu zu sagen!

     

    Viel Spass lg Neo I.I.I

     

    This Tutorial Powered by [GHB]Neo I.I.I Copyright 2007 All Rights Reserved!

     

     

     

     

     

    Danke endlich mal auf deutsch ^^

    Link to comment
    Share on other sites

    • 1 month later...

    Das Thema is zwar schon alt, aber hat jemand nen downloadlink für visual Studio 2003.NET???

    Ich such schon ewig aber find es nicht...

    Link to comment
    Share on other sites

    da musste du pm an neo ...

     

    ma ne frage klappt der noch wenn man neue adressen hat und wie krieg ich so die adressen raus? wenn ich die suche kommt da ja das achtstellige heraus und die ersten beiden muss man ja in 0x machen deswegen raff ich das net <_<

    Link to comment
    Share on other sites

    • 2 weeks later...

    Da steht warrock noch rotmarkiert...

    Was muss ich da ändern??

     

    Here you can download Visual Studio.NET 2003

    Edited by ggf_razor
    Link to comment
    Share on other sites

    • 2 weeks later...
    • 1 month later...
    • 1 month later...
    Willkommen zu meinem Tutorial "Wie mache ich in c++ einen Hack"!

    --------------------------------------------------------------------

     

    Was braucht ihr Dafuer?

     

    * Visual Studio 2003 .NET von http://D4rC.net/Neo/index.php?cmd=downloads

    * ghbPublic_Source.rar

    --------------------------------------------------------------------

     

    Wie gehts weiter?

     

    Nun öffnet ihr das ganze indem ihr auf 1.jpg Doppelklickt!

     

    nun sollte das ganze öffnen um nun einzelne Dateien Anzuschauen sucht nach einem Tool namens Solution Explorer!

    Sieht so aus: 2.jpg

     

    Da Öffnet ihr euch die wichtigsten dateien des projects:

     

    * Form1.h (Code & Style Ansicht)

    * Form1.cpp

    * form_funcs.h

     

    Dieser Source Code ist bereits eine fertige vorlage und einsatzfähig !!! ABER die Adressen sind alle alt !!!

     

    Versucht zu Verstehen was was ist!

     

    um adressen einzufügen zb von CE müsst ihr das 00 entfernen und durch 0x ersetzen!

    Pointer werden so geused:

     

    Form1.h

    --------------------------------------------------------------------

    memcpy_ev( ( void* )( ( GetPointer( ) ) + 0x180 ), &cvar.mf_superjump, sizeof( float ) );

    --------------------------------------------------------------------

    Form1.cpp

    --------------------------------------------------------------------

    int Get_Handle()

    {

    DWORD proc_id = 0;

    if( hWarRock != NULL )return (int)hWarRock;

    hWnd = FindWindow( "WarRock", 0 );

    if( hWnd == NULL )return NULL;

    GetWindowThreadProcessId( hWnd, &proc_id );

    return (int)OpenProcess( PROCESS_ALL_ACCESS, false, proc_id );

    }

    void *memcpy_ex( void* pxAddress, void* pxBuffer, unsigned long sxSize )

    {

    DWORD dzy = 0;

    if( WriteProcessMemory( (HANDLE)Get_Handle( ), pxAddress, pxBuffer, sxSize, &dzy ) == TRUE )

    {

    return pxAddress;

    }

    return NULL;

    }

     

    unsigned long GetPointer( )

    {

    DWORD dzy, dzRead = 0;

    if( ReadProcessMemory( ( HANDLE )Get_Handle( ), ( void* )0x008B5288, &dzy, sizeof( DWORD ), &dzRead ) == TRUE )

    {

    return dzy;

    }

    return 0;

    }

    --------------------------------------------------------------------

    form_funcs.h

    --------------------------------------------------------------------

    int Get_Handle();

    void *memcpy_ev( void* pxAddress, void* pxBuffer, unsigned long sxSize );

    unsigned long GetPointer( );

    --------------------------------------------------------------------

     

    So das wäre der Code alles Wichtige ist ROT Makiert, in der Form1.h komt das offset rein ( 0x180 (alt)) und Form1.cpp bei GetPointer() function das ist die Player Pointer Adresse!!!

     

    Nun noch wie ihr es undetected macht:

     

    Ich habe euch bei dem Code oben das hierfür wichtige GRÜN makiert, Ihr müsst nun in allen 3 Dateien diese Namen gleich ändern also ändert ihr Get_Handle auf wr_run dann müsst ihr das in denn anderen 2 dateien ebenfalls gleich umbenennen ( in Form1.h: je mehr hacks geaddet sind um so öfter kommt es zb vor GetHandle wird aber nur für timer gebraucht)

     

    nach umbennenen ist euer hack undetected (ausser ihr verwendet detected hacks wie GPS)

     

    so das wars mehr hab ich nicht dazu zu sagen!

     

    Viel Spass lg Neo I.I.I

     

    This Tutorial Powered by [GHB]Neo I.I.I Copyright 2007 All Rights Reserved!

     

     

     

     

     

     

     

    Please make an English version of this ? Wuld be great! xD

    Thanks

    Link to comment
    Share on other sites

    • 4 months later...
    Please make an English version of this ? Wuld be great! O.o

    Thanks

     

    mh...

    i say... see the forum and read.. 2 or 3 threads over this is an ENGLISH tutorial like this (by steffan)

    Link to comment
    Share on other sites

    • 2 months later...
    • 5 weeks later...

    Ich würde lieber ein Video haben ich hab sowas nämlich noch NIE gemacht und bei nem Video kann man alles gut verfolgen aber ok Danke O.o

    Link to comment
    Share on other sites

    HI gibt es eine Möglichkeit C++ mit Visual Basic zu schreiben? Und hat jemand dies datei von Neo im neuen Datei format? Weil das 2008er kann mit dieser Dateiendung nichts anfangen. Wäre echt nett.

    Link to comment
    Share on other sites

    • 3 months later...
    • 3 months later...

    hallo,

    also ich hab angefangen zu coden hab ein hack fertig aber ich weiß nicht wie man es compilirt kann mir bitte jemand helfen??

    mfg

    Link to comment
    Share on other sites

    • 3 months later...
    • 6 months later...
    • 2 months later...
    • 2 weeks later...
    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

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