mirror of
https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite.git
synced 2025-12-09 18:31:28 +00:00
- added PrintInternetSettings - added PrintPowerShellSessionSettings - added PrintNtlmSettings - added PrintRDPSettings
26 lines
673 B
C#
26 lines
673 B
C#
namespace winPEAS.Info.NetworkInfo.InternetSettings
|
|
{
|
|
internal class InternetSettingsKey
|
|
{
|
|
public string ValueName { get; }
|
|
public string Value { get; }
|
|
public string Hive { get; }
|
|
public string Path { get; }
|
|
public string Interpretation { get; }
|
|
|
|
public InternetSettingsKey(
|
|
string hive,
|
|
string path,
|
|
string valueName,
|
|
string value,
|
|
string interpretation)
|
|
{
|
|
ValueName = valueName;
|
|
Value = value;
|
|
Interpretation = interpretation;
|
|
Hive = hive;
|
|
Path = path;
|
|
}
|
|
}
|
|
}
|