Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Defender Antivirus API

Reading the documentation of the windows defender API, for example in MpManagerOpen Function:

https://msdn.microsoft.com/en-us/library/windows/desktop/dn920115(v=vs.85).aspx

I see that the required include file is MpClient.h. However I couldn't find it anywhere. Does anyone know where can I find this file, or simply how to use the API without it (without copying the prototypes and structs to my own code), in a C program?

Thanks in advance.

like image 656
macro_controller Avatar asked Apr 23 '17 10:04

macro_controller


People also ask

What is API defender?

Defender for Endpoint exposes much of its data and actions through a set of programmatic APIs. Those APIs will enable you to automate workflows and innovate based on Defender for Endpoint capabilities. The API access requires OAuth2. 0 authentication. For more information, see OAuth 2.0 Authorization Code Flow.

How do you implement a defender for Endpoint?

Onboarding to Microsoft Defender for Endpoint is easy. From the navigation menu, select any item under the Endpoints section, or any Microsoft 365 Defender feature such as Incidents, Hunting, Action center, or Threat analytics to initiate the onboarding process.

How does Microsoft Defender for Endpoint work?

Defender for Endpoint includes Microsoft Secure Score for Devices to help you dynamically assess the security state of your enterprise network, identify unprotected systems, and take recommended actions to improve the overall security of your organization.

What is Scanii?

Scanii is a simple REST API you can use to identify malware, phishing, NSFW images/language and other dangerous content. scanii Details. scanii. scanii Community. Scanii is a simple REST API you can use to identify malware, phishing, NSFW images/language and other dangerous content.


1 Answers

I was looking for that header as well. I found a copy here: https://github.com/hfiref0x/UACME/blob/master/Source/Shared/mpclient.h

like image 50
AZDean Avatar answered Sep 29 '22 17:09

AZDean