forked from hasherezade/pe-sieve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pe_sieve.h
32 lines (24 loc) · 786 Bytes
/
pe_sieve.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @file
* @brief The root of the PE-sieve scanner.
*/
#pragma once
#include <windows.h>
#include <iostream>
#include <stdexcept>
#include <pe_sieve_types.h>
#include <pe_sieve_return_codes.h>
#include "pe_sieve_ver_short.h"
#include "pe_sieve_report.h"
#include "postprocessors/report_formatter.h"
namespace pesieve {
const char PESIEVE_URL[] = "https://github.com/hasherezade/pe-sieve";
//! The string with the basic information about the scanner.
std::string info();
//! The main action performed by PE-sieve: scanning the process and dumping the detected material.
/**
\param args : the configuration of the scan (defined as t_params)
\return A pointer to the generated report (of type ReportEx)
*/
ReportEx* scan_and_dump(IN const pesieve::t_params args);
};