PEASS-ng/winPEAS/winPEASexe/winPEAS/Info/EventsInfo/Logon/ExplicitLogonEventInfo.cs
makikvues fb17429f67 - refactoring / cleanup - moved all native external methods to /Native folder/classes
- added new event checks - Explicit Logon Events, Logon Events, PowerShell Events, Process Creation Events
- added PrintSecurityPackagesCredentials check
- added Windows Defender enumeration
2021-02-03 21:54:20 +01:00

16 lines
452 B
C#

using System;
namespace winPEAS.Info.EventsInfo.Logon
{
internal class ExplicitLogonEventInfo
{
public string SubjectUser { get; set; }
public string SubjectDomain { get; set; }
public string TargetUser { get; set; }
public string TargetDomain { get; set; }
public string Process { get; set; }
public string IpAddress { get; set; }
public DateTime? CreatedAtUtc { get; set; }
}
}