Files
privilege-escalation-awesom…/winPEAS/winPEASexe/winPEAS/Info/NetworkInfo/InternetSettings/InternetSettingsKey.cs
2022-12-23 00:45:23 -05:00

26 lines
661 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;
}
}
}