forked from thoughtworks/talisman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
severity_config.go
59 lines (58 loc) · 1.98 KB
/
severity_config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package severity
var SeverityConfiguration = map[string]Severity{
"ConsumerKeyPattern": High,
"ConsumerSecretParrern": High,
"AWSKeyPattern": High,
"AWSSecretPattern": High,
"RSAKeyPattern": High,
"DSAFile": High,
"PrivateKeyFile": High,
"PemFile": High,
"PpkFile": High,
"SecretToken": High,
"KeyPairFile": High,
"CustomPattern": High,
"PKCSFile": High,
"PFXFile": High,
"P12File": High,
"NetrcFile": High,
"RSAFile": High,
"KeyChainFile": High,
"KeyStoreFile": High,
"OauthTokenFile": High,
"HTPASSWDFile": High,
"TunnelBlockFile": High,
"CredentialsXML": High,
"JenkinsPublishOverSSHFile": High,
"Base64Content": High,
"HexContent": High,
"s3Config": Medium,
"OpenVPNFile": Medium,
"DatabaseYml": Medium,
"ShellHistory": Low,
"ASCFile": Low,
"KDBFile": Low,
"AgileKeyChainFile": Low,
"PubXML": Low,
"GitRobRC": Low,
"ShellRC": Low,
"CreditCardContent": Low,
"ShellProfile": Low,
"ShellAlias": Low,
"OmniAuth": Low,
"CarrierWaveRB": Low,
"SchemaRB": Low,
"PythonSettings": Low,
"PhpConfig": Low,
"PhpLocalSettings": Low,
"EnvFile": Low,
"BDumpFile": Low,
"BSQLFile": Low,
"PasswordFile": Low,
"BackupFile": Low,
"LogFile": Low,
"KWallet": Low,
"GNUCash": Low,
"PasswordPhrasePattern": Low,
"LargeFileSize": Low,
}