mirror of
https://github.com/wavestone-cdt/EDRSandblast.git
synced 2026-06-10 17:31:23 +00:00
D3FC0N 30 release: Obj callbacks, firewalling, symbols w/ internet, and more
Co-authored-by: Maxime Meignan <maxime.meignan@wavestone.com>
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Primitives to check if a binary or driver belongs to an EDR product.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Windows.h>
|
||||
#include <Tchar.h>
|
||||
|
||||
#include "SignatureOps.h"
|
||||
|
||||
TCHAR const* EDR_SIGNATURE_KEYWORDS[];
|
||||
TCHAR const* EDR_BINARIES[];
|
||||
TCHAR const* EDR_DRIVERS[];
|
||||
|
||||
BOOL isFileSignatureMatchingEDR(TCHAR* filePath);
|
||||
|
||||
BOOL isBinaryNameMatchingEDR(TCHAR* binaryName);
|
||||
|
||||
BOOL isBinaryPathMatchingEDR(TCHAR* binaryPath);
|
||||
|
||||
BOOL isDriverNameMatchingEDR(TCHAR* driverName);
|
||||
|
||||
BOOL isDriverPathMatchingEDR(TCHAR* driverPath);
|
||||
Reference in New Issue
Block a user