mirror of
https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite.git
synced 2025-12-09 10:31:27 +00:00
- added PrintInternetSettings - added PrintPowerShellSessionSettings - added PrintNtlmSettings - added PrintRDPSettings
17 lines
438 B
C#
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;
|
|
}
|
|
}
|
|
}
|