mirror of
https://github.com/tnodir/fort
synced 2024-11-15 08:25:20 +00:00
Driver: PsTree: Prepare processes enumerating
This commit is contained in:
parent
e61404ad02
commit
fadb50110a
@ -5,6 +5,8 @@
|
|||||||
#include "fortcb.h"
|
#include "fortcb.h"
|
||||||
#include "fortutl.h"
|
#include "fortutl.h"
|
||||||
|
|
||||||
|
#define FORT_PSTREE_POOL_TAG 'PwfF'
|
||||||
|
|
||||||
#define FORT_PSTREE_NAME_LEN_MAX (64 * sizeof(WCHAR))
|
#define FORT_PSTREE_NAME_LEN_MAX (64 * sizeof(WCHAR))
|
||||||
|
|
||||||
typedef struct fort_psnode
|
typedef struct fort_psnode
|
||||||
@ -21,6 +23,74 @@ typedef struct fort_psnode
|
|||||||
UINT32 process_id;
|
UINT32 process_id;
|
||||||
} FORT_PSNODE, *PFORT_PSNODE;
|
} FORT_PSNODE, *PFORT_PSNODE;
|
||||||
|
|
||||||
|
typedef struct _SYSTEM_PROCESSES
|
||||||
|
{
|
||||||
|
ULONG NextEntryOffset;
|
||||||
|
ULONG NumberOfThreads;
|
||||||
|
ULONG Reserved1[6];
|
||||||
|
LARGE_INTEGER CreateTime;
|
||||||
|
LARGE_INTEGER UserTime;
|
||||||
|
LARGE_INTEGER KernelTime;
|
||||||
|
UNICODE_STRING ImageName;
|
||||||
|
KPRIORITY BasePriority;
|
||||||
|
SIZE_T ProcessId;
|
||||||
|
SIZE_T ParentProcessId;
|
||||||
|
ULONG HandleCount;
|
||||||
|
ULONG SessionId;
|
||||||
|
} SYSTEM_PROCESSES, *PSYSTEM_PROCESSES;
|
||||||
|
|
||||||
|
#if !defined(SystemProcessInformation)
|
||||||
|
# define SystemProcessInformation 5
|
||||||
|
|
||||||
|
NTSTATUS NTAPI ZwQuerySystemInformation(ULONG systemInformationClass, PVOID systemInformation,
|
||||||
|
ULONG systemInformationLength, PULONG returnLength);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static NTSTATUS fort_pstree_enum_processes_loop(
|
||||||
|
PFORT_PSTREE ps_tree, PSYSTEM_PROCESSES processEntry)
|
||||||
|
{
|
||||||
|
NTSTATUS status = STATUS_SUCCESS;
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
const DWORD pid = (DWORD) processEntry->ProcessId;
|
||||||
|
const DWORD ppid = (DWORD) processEntry->ParentProcessId;
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
|
||||||
|
if (processEntry->NextEntryOffset == 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
processEntry = (PSYSTEM_PROCESSES) ((PUCHAR) processEntry + processEntry->NextEntryOffset);
|
||||||
|
}
|
||||||
|
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
static NTSTATUS fort_pstree_enum_processes(PFORT_PSTREE ps_tree)
|
||||||
|
{
|
||||||
|
NTSTATUS status;
|
||||||
|
|
||||||
|
ULONG bufferSize;
|
||||||
|
status = ZwQuerySystemInformation(SystemProcessInformation, NULL, 0, &bufferSize);
|
||||||
|
if (status != STATUS_INFO_LENGTH_MISMATCH)
|
||||||
|
return status;
|
||||||
|
|
||||||
|
bufferSize *= 2; /* for possible new created processes/threads */
|
||||||
|
|
||||||
|
PVOID buffer = fort_mem_alloc(bufferSize, FORT_PSTREE_POOL_TAG);
|
||||||
|
if (buffer == NULL)
|
||||||
|
return STATUS_INSUFFICIENT_RESOURCES;
|
||||||
|
|
||||||
|
status = ZwQuerySystemInformation(SystemProcessInformation, buffer, bufferSize, &bufferSize);
|
||||||
|
if (NT_SUCCESS(status)) {
|
||||||
|
status = fort_pstree_enum_processes_loop(ps_tree, buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
fort_mem_free(buffer, FORT_PSTREE_POOL_TAG);
|
||||||
|
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
static BOOL fort_pstree_svchost_check(
|
static BOOL fort_pstree_svchost_check(
|
||||||
PCUNICODE_STRING path, PCUNICODE_STRING commandLine, PUNICODE_STRING serviceName)
|
PCUNICODE_STRING path, PCUNICODE_STRING commandLine, PUNICODE_STRING serviceName)
|
||||||
{
|
{
|
||||||
@ -100,11 +170,16 @@ FORT_API void fort_pstree_open(PFORT_PSTREE ps_tree)
|
|||||||
FORT_CALLBACK(
|
FORT_CALLBACK(
|
||||||
FORT_PSTREE_NOTIFY, PCREATE_PROCESS_NOTIFY_ROUTINE_EX, fort_pstree_notify),
|
FORT_PSTREE_NOTIFY, PCREATE_PROCESS_NOTIFY_ROUTINE_EX, fort_pstree_notify),
|
||||||
FALSE);
|
FALSE);
|
||||||
|
|
||||||
if (!NT_SUCCESS(status)) {
|
if (!NT_SUCCESS(status)) {
|
||||||
DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL,
|
DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL,
|
||||||
"FORT: PsTree: PsSetCreateProcessNotifyRoutineEx Error: %x\n", status);
|
"FORT: PsTree: PsSetCreateProcessNotifyRoutineEx Error: %x\n", status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
status = fort_pstree_enum_processes(ps_tree);
|
||||||
|
if (!NT_SUCCESS(status)) {
|
||||||
|
DbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL,
|
||||||
|
"FORT: PsTree: Enum Processes Error: %x\n", status);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
FORT_API void fort_pstree_close(PFORT_PSTREE ps_tree)
|
FORT_API void fort_pstree_close(PFORT_PSTREE ps_tree)
|
||||||
|
@ -356,3 +356,13 @@ NTSTATUS ZwQuerySymbolicLinkObject(
|
|||||||
UNUSED(returnedLength);
|
UNUSED(returnedLength);
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NTSTATUS ZwQuerySystemInformation(ULONG systemInformationClass, PVOID systemInformation,
|
||||||
|
ULONG systemInformationLength, PULONG returnLength)
|
||||||
|
{
|
||||||
|
UNUSED(systemInformationClass);
|
||||||
|
UNUSED(systemInformation);
|
||||||
|
UNUSED(systemInformationLength);
|
||||||
|
UNUSED(returnLength);
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
@ -308,6 +308,9 @@ FORT_API NTSTATUS ZwOpenSymbolicLinkObject(
|
|||||||
FORT_API NTSTATUS ZwQuerySymbolicLinkObject(
|
FORT_API NTSTATUS ZwQuerySymbolicLinkObject(
|
||||||
HANDLE linkHandle, PUNICODE_STRING linkTarget, PULONG returnedLength);
|
HANDLE linkHandle, PUNICODE_STRING linkTarget, PULONG returnedLength);
|
||||||
|
|
||||||
|
FORT_API NTSTATUS ZwQuerySystemInformation(ULONG systemInformationClass, PVOID systemInformation,
|
||||||
|
ULONG systemInformationLength, PULONG returnLength);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} // extern "C"
|
} // extern "C"
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user