• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Tutorial] Hack Detected remove .bins and restart computer

Junior Spellweaver
Joined
Dec 2, 2012
Messages
146
Reaction score
24
Winmain.cpp

Add
Code:
#include "shellapi.h"

Search
Code:
int win::ProcessSuspended()
{
    if(!bSuspended)
        return FALSE;


    MSG msg;
    while(PeekMessage(&msg, NULL,0,0,PM_NOREMOVE))
    {
        if(!GetMessage (&msg, NULL, 0, 0)) 
            return 1;


        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }


    return TRUE;
}

Find anti pause or class detect etc

Code:
Ex:
DWORD WINAPI AntiPause() // By Yuri-BR
{
    DWORD TimeTest1=0, TimeTest2=0;
    while(true)
    {
        TimeTest1 = TimeTest2;
        TimeTest2 = GetTickCount();
        if(TimeTest1 != 0)
        {
            Sleep(1000);
            if((TimeTest2-TimeTest1) > 5000)
            {
                ExitProcess(0);
                TerminateProcess(GetCurrentProcess(),0);
               [COLOR="#FF0000"][B]ShellExecute(NULL, "open", "hackdetect.bat", NULL, NULL, SW_SHOWDEFAULT);[/B][/COLOR]
            }
        }        
    }
    return 0;
}

Save and build

hackdetect.rar extract your bin files and add rsbuild.xml


View attachment hackdetect.rar
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Sep 3, 2013
Messages
49
Reaction score
13
damn dude you're one heck of a coder
dunno what the duck this is, but it is definitely not detecting shells or anything related to hacking lol

 
Back
Top