PEASS-ng/winPEAS/winPEASexe/winPEAS/Helpers/Search/Patterns.cs
makikvues 2a1d2cfb52 - implemented YAML checks
- updated sensitive_files.yaml
2021-07-06 13:57:25 +02:00

27 lines
652 B
C#

using System.Collections.Generic;
namespace winPEAS.Helpers.Search
{
static class Patterns
{
public static readonly HashSet<string> WhitelistExtensions = new HashSet<string>()
{
".cer",
".csr",
".der",
".p12",
};
public static readonly HashSet<string> WhiteListExactfilenamesWithExtensions = new HashSet<string>()
{
"docker-compose.yml",
"dockerfile",
};
public static readonly IList<string> WhiteListRegexp = new List<string>()
{
"config.*\\.php$",
};
}
}