Panoptes 1.0.0
Endpoint Detection and Response
Loading...
Searching...
No Matches
service_constants.h
Go to the documentation of this file.
1//Container Constants
2
3#define EXT_AMSI "PanoptesAMSI.dll"
4#define EXT_YARA "PanoptesYara.dll"
5#define EXT_PE "PanoptesPE.dll"
6#define EXT_ML "PanoptesML.dll"
7
8//Service Constants
9
10#define SERVICE_MUTEX "Panoptes"
11
12//Database Constants
13
14#define PANOPTES_DATABASE_PATH "C:\\ProgramData\\Panoptes\\Database"
15
16//Logging Constants
17
18#define LOG_FOLDER L"C:\\ProgramData\\Panoptes\\Logs\\"
19#define BASE_FILENAME L"pano"
20#define FILE_EXTENSION L".log"
21#define MAX_FILE_SIZE 1024 * 1024 * 5 // 5 MB
22
23//Error Constants
24
25#define ERRORCODE int
26
27// Driver Constants
28
29#define KERNEL_DRIVER_SERVICE_NAME "Panoptes"
30
31// ETW Constants
32
33#define TRACE_NAMEW L"Panoptes"
34
35
36
37