-
Notifications
You must be signed in to change notification settings - Fork 0
/
matchers.json
42 lines (42 loc) · 963 Bytes
/
matchers.json
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
[
{
"description": "Password or Secret Assignment",
"regex": "(password|secret) = ['\"].*?"
},
{
"description": "AWS Access Key ID",
"regex": "AKIA[0-9A-Z]{16}"
},
{
"description": "Redis URL with Password",
"regex": "redis://[0-9a-zA-Z:@.\\-]+"
},
{
"description": "URL Basic auth",
"regex": "https?://[0-9a-zA-z_]+?:[0-9a-zA-z_]+?@.+?"
},
{
"description":"Google Access Token",
"regex": "ya29.[0-9a-zA-Z_\\-]{68}"
},
{
"description": "Google API",
"regex": "AIzaSy[0-9a-zA-Z_\\-]{33}"
},
{
"description": "Slack API",
"regex": "xoxp-\\d+-\\d+-\\d+-[0-9a-f]+"
},
{
"description": "Slack Bot",
"regex": "xoxb-\\d+-[0-9a-zA-Z]+"
},
{
"description": "Gem Fury v1",
"regex": "https?://[0-9a-zA-Z]+@[a-z]+\\.(gemfury.com|fury.io)(/[a-z]+)?"
},
{
"description": "Gem Fury v2",
"regex": "https?://[a-z]+\\.(gemfury.com|fury.io)/[0-9a-zA-Z]{20}"
}
]