2023-08-22 19:32:25 +02:00
|
|
|
#ifndef INTEGRITY_H
|
|
|
|
#define INTEGRITY_H
|
|
|
|
|
|
|
|
#include <ntifs.h>
|
2023-09-02 15:47:15 +02:00
|
|
|
#include "common.h"
|
2023-08-22 19:32:25 +02:00
|
|
|
|
|
|
|
NTSTATUS CopyDriverExecutableRegions(
|
|
|
|
_In_ PIRP Irp
|
|
|
|
);
|
|
|
|
|
2023-08-23 14:14:20 +02:00
|
|
|
NTSTATUS GetDriverImageSize(
|
|
|
|
_In_ PIRP Irp
|
|
|
|
);
|
|
|
|
|
2023-08-31 18:42:38 +02:00
|
|
|
NTSTATUS VerifyInMemoryImageVsDiskImage(
|
2023-09-01 13:46:31 +02:00
|
|
|
//_In_ PIRP Irp
|
2023-08-31 18:42:38 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
NTSTATUS RetrieveInMemoryModuleExecutableSections(
|
|
|
|
_In_ PIRP Irp
|
|
|
|
);
|
2023-08-31 17:49:04 +02:00
|
|
|
|
2023-08-25 09:38:45 +02:00
|
|
|
#endif
|