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

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;
}
}
}