Results 1 to 10 of 10
  1. #1
    Devata25's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    C:\WINDOWS\system32
    Posts
    38
    Reputation
    10
    Thanks
    139
    My Mood
    Cold

    Cool C++ [Module Freezer]

    Hello MPGH
    Today i'am share coding module freezer@C++ ,,,

    Code:
    #include <Windows.h>
    #include <TlHelp32.h>
    
    void __fastcall Suspend(void)
    {
            //module.dll file yg mau kamu dumb atau debug
            while(!GetModuleHandleA("module.dll")) Sleep(100);
    
            HANDLE hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, GetCurrentProcessId());
    
            LPTHREADENTRY32 pTE32;
            Thread32First(hSnap, pTE32);
    
            do{
                    if(pTE32->th32ThreadID!=GetCurrentThreadId()) SuspendThread(OpenThread(THREAD_TERMINATE, false, pTE32->th32ThreadID));
            }while(Thread32Next(hSnap, pTE32));
    
            MessageBoxA(0, "Attach debugger now, or dump.", "Module Freezer by HydroPlus", 0);
    }
    
    bool __stdcall DllMain(PVOID _1, PVOID _2, PVOID _3)
    {
            if(DWORD(_2) == 0x00000001)
                    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Suspend, 0, 0, 0);
    }
    usage:
    Compile and inject dll into game process which you want to debug.

    advantages:
    Not detected by anti-cheat soft like hshield, nProtect, xtrap, etc..

    credit:
    HydroPlus
    MSDN
    ./DevatA_Code [Me]

    If Useful Rep + +
    Devata|Code'Rian
    Legend Coder@DeCode

  2. #2
    volNOreZ's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    2
    My Mood
    Chatty
    Quote Originally Posted by Devata25 View Post
    Hello MPGH
    Today i'am share coding module freezer@C++ ,,,

    Code:
    #include <Windows.h>
    #include <TlHelp32.h>
    
    void __fastcall Suspend(void)
    {
            //module.dll file yg mau kamu dumb atau debug
            while(!GetModuleHandleA("module.dll")) Sleep(100);
    
            HANDLE hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, GetCurrentProcessId());
    
            LPTHREADENTRY32 pTE32;
            Thread32First(hSnap, pTE32);
    
            do{
                    if(pTE32->th32ThreadID!=GetCurrentThreadId()) SuspendThread(OpenThread(THREAD_TERMINATE, false, pTE32->th32ThreadID));
            }while(Thread32Next(hSnap, pTE32));
    
            MessageBoxA(0, "Attach debugger now, or dump.", "Module Freezer by HydroPlus", 0);
    }
    
    bool __stdcall DllMain(PVOID _1, PVOID _2, PVOID _3)
    {
            if(DWORD(_2) == 0x00000001)
                    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Suspend, 0, 0, 0);
    }
    usage:
    Compile and inject dll into game process which you want to debug.

    advantages:
    Not detected by anti-cheat soft like hshield, nProtect, xtrap, etc..

    credit:
    HydroPlus
    MSDN
    ./DevatA_Code [Me]

    If Useful Rep + +
    So, devata, as i understood i just need to inject this dll.(compiled from this source code) and one another dll like aimbot or WH in PerX (or somewhere else)
    If yes, and any hacks won't be detected, IT'S THE BEST THING I HAVE EVER SEEN!
    If yes,

    ---------- Post added at 01:52 PM ---------- Previous post was at 01:46 PM ----------

    look. my dev-c++ found some mistakes...
    15 C:\Users\Леша\Favorites\Documents\программирование \DEBUGGER.cpp `OpenThread' undeclared (first use this function)
    and i just a newbie in c++, but where is return?

  3. #3
    Royce's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    17,952
    Reputation
    4088
    Thanks
    6,418
    nice share, make your hack sooon

  4. #4
    MasterZin's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    43
    should be module.dll be renamed to whatever is the module I want to freeze?

  5. #5
    lannyboy's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    97
    Reputation
    10
    Thanks
    420
    lol! you guys know nothing to this one... again he leeched from some other site, google it.

    this part is telling you, you can freeze your game and using tools to reverse it for getting your own shake (e.g. base addresses, pointer classes and etc goodies).

  6. #6
    Lehsyrus's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Jersey
    Posts
    10,884
    Reputation
    1281
    Thanks
    3,134
    Quote Originally Posted by lannyboy View Post
    lol! you guys know nothing to this one... again he leeched from some other site, google it.

    this part is telling you, you can freeze your game and using tools to reverse it for getting your own shake (e.g. base addresses, pointer classes and etc goodies).
    Google'd it, didn't find anything, and don't bump old threads.

  7. #7
    lannyboy's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    97
    Reputation
    10
    Thanks
    420
    lol, deleted my post??? hahaha... a big loser... i posted the copy pasta url and my post was deleted. shame!

  8. #8
    Time's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    26,500
    Reputation
    3714
    Thanks
    4,533
    My Mood
    Mellow
    It contained advertisement, lucky for you i let you off with a warning since you are somewhat contributing to the section, seeing as though if you continue it i will surely get you banned.

  9. #9
    PheonX's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    C|WINDOWS|System32
    Posts
    76
    Reputation
    10
    Thanks
    431
    My Mood
    Dead
    Quote Originally Posted by MasterZin View Post
    should be module.dll be renamed to whatever is the module I want to freeze?
    yes , change the "module.dll" with yur target ex "d3d9.dll"

  10. #10
    virganja's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    jakarta
    Posts
    19
    Reputation
    10
    Thanks
    1
    module.dll reaplace with pointblank.exe?
    true or not?
    i'm newbie

Similar Threads

  1. [VB6 Module edit]
    By leiva1 in forum Visual Basic Programming
    Replies: 8
    Last Post: 09-24-2007, 11:19 AM
  2. [request]New Module
    By killer2334 in forum Hack Requests
    Replies: 0
    Last Post: 07-21-2007, 06:42 AM
  3. [request] Module
    By Elliwood in forum WarRock - International Hacks
    Replies: 6
    Last Post: 07-16-2007, 01:11 PM
  4. Module for Warrock
    By condor01 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 07-07-2007, 03:15 AM
  5. module vb6
    By ZeaS in forum WarRock - International Hacks
    Replies: 12
    Last Post: 07-02-2007, 07:47 PM