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.

    Help


    ikke0147
     Share

    Recommended Posts

    Hello,

    When im injecting my .DLL into an injector! (PERFECTLY THE SAME NAME)

    the nomenu hack doesnt work!

     

    I've got the net codes int it:

    #include <windows.h>

    #include <stdio.h>

     

    //--------------------------Define Hacks--------------------------//

     

    #define Playerpointer 0xCCB670

    #define Serverpointer 0xBD4B38

    #define OFS_Z 0x25C

    #define NFD_Player_OffSet 0x320

     

    //--------------------------End Define Addies--------------------------//

     

    //--------------------------Define HackThread--------------------------//

     

    DWORD *ingame= (DWORD*)Playerpointer;

    DWORD *outgame= (DWORD*)Serverpointer;

     

    //--------------------------End Define HackThread--------------------------//

     

    //--------------------------Start Hacks--------------------------//

     

    void superjump () //super jump

    {

    if(GetAsyncKeyState(VK_CONTROL) &1)

    {

    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;

    if(dwPlayerPtr != 0)

    {

    *(float*)(dwPlayerPtr+OFS_Z) = 1000;

    }

    }

    }

     

    void nfd () //NFD

    {

    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;

    if(dwPlayerPtr != 0)

    {

    *(float*)(dwPlayerPtr+NFD_Player_OffSet) = -20000;

    }

    }

     

    //--------------------------End Hacks--------------------------//

     

    //-------------------------HackThread--------------------------//

     

    void HackThread()

    {

    for(;; )

    {

    if(*ingame)

    {

    superjump();

    nfd();

    }

    if(*outgame)

    {

     

    }

    }

    Sleep(200); //prevent for overloading the cpu

    }

     

    //--------------------------End HackThread--------------------------//

     

    //--------------------------End--------------------------//

     

    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)

    {

    if(dwReason == DLL_PROCESS_ATTACH)

    {

     

    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);

    }

    return TRUE;

    }

     

    If you want to see file i made (download unther)

    Please tell me how i fix this!

     

    Virusscan:

    Virustotal

     

    Antivirus Versie Laatst geüpdatet Resultaat

    a-squared 4.5.0.41 2009.11.14 -

    AhnLab-V3 5.0.0.2 2009.11.13 -

    AntiVir 7.9.1.65 2009.11.13 -

    Antiy-AVL 2.0.3.7 2009.11.13 -

    Authentium 5.2.0.5 2009.11.14 -

    Avast 4.8.1351.0 2009.11.14 -

    AVG 8.5.0.425 2009.11.13 -

    BitDefender 7.2 2009.11.14 -

    CAT-QuickHeal 10.00 2009.11.13 -

    ClamAV 0.94.1 2009.11.14 -

    Comodo 2952 2009.11.14 -

    DrWeb 5.0.0.12182 2009.11.14 -

    eSafe 7.0.17.0 2009.11.12 -

    eTrust-Vet 35.1.7121 2009.11.14 -

    F-Prot 4.5.1.85 2009.11.13 -

    F-Secure 9.0.15370.0 2009.11.11 -

    Fortinet 3.120.0.0 2009.11.14 -

    GData 19 2009.11.14 -

    Ikarus T3.1.1.74.0 2009.11.14 -

    Jiangmin 11.0.800 2009.11.12 -

    K7AntiVirus 7.10.896 2009.11.13 -

    Kaspersky 7.0.0.125 2009.11.14 -

    McAfee 5801 2009.11.13 -

    McAfee+Artemis 5801 2009.11.13 -

    McAfee-GW-Edition 6.8.5 2009.11.14 -

    Microsoft 1.5202 2009.11.14 -

    NOD32 4606 2009.11.14 -

    Norman 6.03.02 2009.11.14 -

    nProtect 2009.1.8.0 2009.11.14 -

    Panda 10.0.2.2 2009.11.13 -

    PCTools 7.0.3.5 2009.11.13 -

    Prevx 3.0 2009.11.14 -

    Rising 22.21.05.04 2009.11.14 -

    Sophos 4.47.0 2009.11.14 -

    Sunbelt 3.2.1858.2 2009.11.12 -

    Symantec 1.4.4.12 2009.11.14 -

    TheHacker 6.5.0.2.069 2009.11.13 -

    TrendMicro 9.0.0.1003 2009.11.14 -

    VBA32 3.12.10.11 2009.11.13 -

    ViRobot 2009.11.14.2037 2009.11.14 -

    VirusBuster 4.6.5.0 2009.11.13 -

    need_help.zip

    Link to comment
    Share on other sites

    There are two main reasons why your hack isn't working. Maybe the memory addresses are out of date. In this case you'll have to get the new ones. Or your injector has been patched by the anti cheat system. In this case you'll have to programm a new injector.

     

    [iRONY] But as I can see from your DLL-Code which you have developed by yourself in perfect C++ you have of course the skill to programm a new injector and to get the new addresses alone without help of others. [/iRONY]

     

    Frankly your code sends shivers down my spine

     

     

    Best Regards

     

    xNopex

    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...