mirror of
https://github.com/peass-ng/PEASS-ng.git
synced 2026-03-12 21:23:13 -07:00
14 lines
333 B
C#
14 lines
333 B
C#
namespace winPEAS.Checks
|
|
{
|
|
public interface ISystemCheck
|
|
{
|
|
void PrintInfo(bool isDebug);
|
|
|
|
/// <summary>
|
|
/// MITRE ATT&CK technique IDs associated with this check category
|
|
/// (e.g. new[] { "T1082", "T1548.002" }).
|
|
/// </summary>
|
|
string[] MitreAttackIds { get; }
|
|
}
|
|
}
|