mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2026-06-16 07:49:24 +00:00
updates and moves
n/a
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
struct PROCESS_BASIC_INFORMATION {
|
||||
PVOID Reserved1;
|
||||
DWORD PebBaseAddress;
|
||||
PVOID Reserved2[2];
|
||||
DWORD UniqueProcessId;
|
||||
PVOID Reserved3;
|
||||
};
|
||||
|
||||
typedef NTSTATUS (WINAPI* _NtUnmapViewOfSection)(
|
||||
HANDLE ProcessHandle,
|
||||
PVOID BaseAddress
|
||||
);
|
||||
|
||||
typedef NTSTATUS (WINAPI* _NtQueryInformationProcess)(
|
||||
HANDLE ProcessHandle,
|
||||
DWORD ProcessInformationClass,
|
||||
PVOID ProcessInformation,
|
||||
DWORD ProcessInformationLength,
|
||||
PDWORD ReturnLength
|
||||
);
|
||||
|
||||
typedef NTSTATUS (WINAPI* _NtQuerySystemInformation)(
|
||||
DWORD SystemInformationClass,
|
||||
PVOID SystemInformation,
|
||||
ULONG SystemInformationLength,
|
||||
PULONG ReturnLength
|
||||
);
|
||||
Reference in New Issue
Block a user