/*
Detect Sandboxie/Threat Expert
Coded by stoopid
*/
#include <stdio.h>
#include <windows.h>
char* sModule[] = { "SbieDll.dll", "dbghelp.dll" };
bool IsInSandbox()
{
for( int i = 0; i < ( sizeof( sModule ) / sizeof( char* ) ); i++ )
{
if( GetModuleHandle( sModule[ i ] ) )
{
return true;
}
}
return false;
}
/*
#include <tlhelp32.h>
bool IsInSandbox()
{
MODULEENTRY32 me32;
HANDLE hSnapShot;
me32.dwSize = sizeof( MODULEENTRY32 );
hSnapShot = CreateToolhelp32Snapshot( TH32CS_SNAPMODULE, GetCurrentProcessId() );
Module32First( hSnapShot, &me32 );
while( Module32Next( hSnapShot, &me32 ) )
{
for( int i = 0; i < ( sizeof( sModule ) / sizeof( char* ) ); i++ )
{
if( strstr( me32.szModule, sModule[ i ] ) )
{
CloseHandle( hSnapShot );
return true;
}
}
}
CloseHandle( hSnapShot );
return false;
}
*/
int main()
{
if ( IsInSandbox() ) {
printf ( "Sandbox detected\n" );
}
else {
printf ( "No Sandbox detected\n" );
}
return 0;
}
Like this:
Like Loading...
Related