- added new event checks - Explicit Logon Events, Logon Events, PowerShell Events, Process Creation Events - added PrintSecurityPackagesCredentials check - added Windows Defender enumeration
21 lines
610 B
C#
21 lines
610 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace winPEAS.Info.SystemInfo.WindowsDefender
|
|
{
|
|
class WindowsDefenderSettingsInfo
|
|
{
|
|
public WindowsDefenderSettings LocalSettings { get; set; }
|
|
public WindowsDefenderSettings GroupPolicySettings { get; set; }
|
|
|
|
public WindowsDefenderSettingsInfo(WindowsDefenderSettings localSettings, WindowsDefenderSettings groupPolicySettings)
|
|
{
|
|
LocalSettings = localSettings;
|
|
GroupPolicySettings = groupPolicySettings;
|
|
}
|
|
}
|
|
}
|