Deposit & Withdraw | About Verified Sellers and Escrow | Advertise | Scam Report | Tracking Number Details | WesternUnion Tracking

carding forums carding forums
revolut carding carding forums
carding forums carding forums
carding forums

Thread Rating:
Basic Anti-Debugging in C++
#1
I am going to share a simple method for detecting whether your program (it may be viral code as well) is being debugged. Anti-debugging is an essential trick for survival of your malicious code.

Windows API provides a simple function isDebuggerPresent() but it can be bypassed too easily, and therefore should NOT be used. I will show you how to use Process Control Box to test debugging.

Process Control Box or PCB is a kernel level stuff, and therefore is accessible by Native API (not Win32 API). The following code shows how to do it. Code is self explanatory.

Code:
void alert()
{
    typedef unsigned long (__stdcall  *pfnNtQueryInformationProcess)(IN  HANDLE, IN  unsigned int, OUT PVOID,  IN ULONG, OUT PULONG);
    const int ProcessDbgPort = 7;
    pfnNtQueryInformationProcess NtQueryInfoProcess = NULL;
    unsigned long Ret;
    unsigned long IsRemotePresent = 0;

    HMODULE hNtDll = LoadLibrary(TEXT("ntdll.dll"));
    if(hNtDll == NULL)
    {
        cout<<"\nFATAL ERROR!!!!\nPress any key to terminate....";
        _getch();
        exit(0);
    }

    NtQueryInfoProcess = (pfnNtQueryInformationProcess)
    GetProcAddress(hNtDll, "NtQueryInformationProcess");
    if(NtQueryInfoProcess == NULL)
    {
        cout<<"\nFATAL ERROR!!!!\nPress any key to terminate....";
        _getch();
        exit(0);
    }
    Ret = NtQueryInfoProcess(GetCurrentProcess(), ProcessDbgPort, &IsRemotePresent, sizeof(unsigned long), NULL);
    if(Ret == 0x00000000 && IsRemotePresent != 0)
    {
        cout<<"\nClose your bloody debugger!!!\n";
    }
    else
    {
        cout<<"\nI am not being debugged...\n";
    }
}

To use it in your code, simply call alert() function. You may want to modify it to return a value (true/false) instead of printing string.
Reply
Paid adv. expire in 31 days
CLICK to buy Advertisement !

    Verified & Trusted Electronics Carding, Carding iPhone, Samsung Carding, MacBook Carding, Laptops Carding

#2
thx for share
Reply
#3
The ImmunityDebugger has also a plugin that bypass several anti-debug tricks. Maybe thats also interesting to look at their github repo, if you want to learn what kind of techniques are popular.
Reply
  


Forum Jump:


Contributors: Xp2018 , REVO , Prince