Files
PEASS-ng/winPEAS/winPEASexe/winPEAS/Checks/ISystemCheck.cs
2026-03-08 00:58:55 +00:00

14 lines
333 B
C#

namespace winPEAS.Checks
{
public interface ISystemCheck
{
void PrintInfo(bool isDebug);
/// <summary>
/// MITRE ATT&amp;CK technique IDs associated with this check category
/// (e.g. new[] { "T1082", "T1548.002" }).
/// </summary>
string[] MitreAttackIds { get; }
}
}