Files
thefLink-Hunt-Weird-Syscalls/Hunt-Weird-Syscalls/Detectors.h
T
2023-04-18 20:36:09 +02:00

17 lines
410 B
C++

#pragma once
#include "windows.h"
#include <vector>
#include "Helpers.h"
namespace Detectors {
extern std::vector<PCSTR> SyscallsAllowOpenProcess;
extern PCSTR SyscallAllowOpenThread;
extern PCSTR SyscallAllowSetThreadContext;
VOID DirectSyscall ( DWORD pid, HANDLE hProcess, std::vector<ULONG_PTR> stack );
VOID InDirectSyscall ( DWORD pid, HANDLE hProcess, std::vector<ULONG_PTR> stack, PCSTR );
}