Files
SimpleRemoter/server/2015Remote/adapter.h

23 lines
458 B
C
Raw Normal View History

2025-06-11 03:16:09 +08:00
#pragma once
#include <wtypes.h>
/******************************* WinOS RAT Adapter ****************************************/
#define TOKEN_GETVERSION 4
#define TOKEN_ACTIVED 202
enum SENDTASK {
TASK_MAIN,
TASK_PLUG,
2025-06-11 03:16:09 +08:00
};
struct DllSendData {
SENDTASK sendtask;
WCHAR DllName[255]; // DL名称
BOOL is_64; // 位数
int DataSize; // DLL大小
WCHAR szVersion[50]; // 版本
WCHAR szcommand[1000];
int i;
2025-06-11 03:16:09 +08:00
};