TestimoX

API Reference

Class

ExploitProtection

Namespace ComputerX.ExploitProtection
Assembly ComputerX
Modifiers static

Queries exploit protection runtime and policy posture (DEP, ASLR, CFG, SEHOP).

Inheritance

  • Object
  • ExploitProtection

Methods

public static ExploitProtectionInfo Get(String computerName = null) #
Returns: ExploitProtectionInfo

Gets exploit protection posture for a local or remote computer.

Parameters

computerName System.String = null optionalposition: 0
Target computer; null/empty uses local machine.

Returns

Exploit protection posture snapshot.

public static Task<ExploitProtectionInfo> GetAsync(String computerName = null, CancellationToken cancellationToken = null) #
Returns: Task<ExploitProtectionInfo>

Asynchronously gets exploit protection posture for a local or remote computer.

Parameters

computerName System.String = null optionalposition: 0
Target computer; null/empty uses local machine.
cancellationToken System.Threading.CancellationToken = null optionalposition: 1
Cancellation token.

Returns

Exploit protection posture snapshot.

public static IAsyncEnumerable<ExploitProtectionInfo> GetManyAsync(IEnumerable<String> computerNames, Int32 degreeOfParallelism = 4, CancellationToken cancellationToken = null) #
Returns: IAsyncEnumerable<ExploitProtectionInfo>

Gets exploit protection posture for multiple computers with bounded concurrency.

Parameters

computerNames System.Collections.Generic.IEnumerable{System.String} requiredposition: 0
Target computers.
degreeOfParallelism System.Int32 = 4 optionalposition: 1
Maximum concurrency.
cancellationToken System.Threading.CancellationToken = null optionalposition: 2
Cancellation token.