PE-sieve
Scans all running processes. Recognizes and dumps a variety of potentially malicious implants (replaced/implanted PEs, shellcodes, hooks, in-memory patches).
Loading...
Searching...
No Matches
pe_sieve_report.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <windows.h>
9#include <iostream>
10
13
14namespace pesieve {
15
17 class ReportEx {
18 public:
20 scan_report(nullptr), dump_report(nullptr)
21 {
22 }
23
25 {
26 delete scan_report;
27 delete dump_report;
28 }
29
32 };
33
34};
The report aggregating the results of the performed dumps.
Definition dump_report.h:48
The report aggregating the results of the performed scan.
Definition scan_report.h:19
The final report about the actions performed on the process: scanning and dumping.
ProcessScanReport * scan_report
the report aggregating the results of the performed scans
ProcessDumpReport * dump_report
the report aggregating the results of the performed dumps