Files
privilege-escalation-awesom…/winPEAS/winPEASexe/winPEAS/Info/SystemInfo/PowerShell/PowerShellSessionSettingsInfo.cs
makikvues f3c7e92735 - added PrintLOLBAS
- added PrintInternetSettings
- added PrintPowerShellSessionSettings
- added PrintNtlmSettings
- added PrintRDPSettings
2021-02-11 22:36:39 +01:00

17 lines
438 B
C#

using System.Collections.Generic;
namespace winPEAS.Info.SystemInfo.PowerShell
{
internal class PowerShellSessionSettingsInfo
{
public string Plugin { get; }
public List<PluginAccessInfo> Permissions { get; }
public PowerShellSessionSettingsInfo(string plugin, List<PluginAccessInfo> permissions)
{
Plugin = plugin;
Permissions = permissions;
}
}
}