-
Notifications
You must be signed in to change notification settings - Fork 439
/
Copy path.gitleaks.toml
88 lines (79 loc) · 1.74 KB
/
.gitleaks.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Global allowlist
[allowlist]
paths = [
'''node_modules''',
'''.git'''
]
# Custom rules
[[rules]]
id = "alchemy-api-key"
description = "Alchemy API Key"
regex = '''https://[a-zA-Z0-9-]+\.g\.alchemy\.com/v2/[a-zA-Z0-9_-]+'''
keywords = [
"alchemy",
"alchemy.com"
]
tags = ["key", "Alchemy"]
[[rules]]
id = "ankr-api-key"
description = "Ankr API Key"
regex = '''https://rpc\.ankr\.com/[a-zA-Z0-9_-]+/[a-zA-Z0-9_-]+'''
keywords = [
"ankr",
"rpc.ankr.com"
]
tags = ["key", "Ankr"]
[[rules]]
id = "tenderly-api-key"
description = "Tenderly API Key"
regex = '''https://[a-zA-Z0-9-]+\.gateway\.tenderly\.co/[a-zA-Z0-9_-]+'''
keywords = [
"tenderly",
"gateway.tenderly.co"
]
tags = ["key", "Tenderly"]
[[rules]]
id = "quicknode-api-key"
description = "QuickNode API Key"
regex = '''https://[a-zA-Z0-9-]+\.[a-zA-Z0-9-]+\.quiknode\.pro/[a-zA-Z0-9]+'''
keywords = [
"quiknode",
"quiknode.pro"
]
tags = ["key", "QuickNode"]
[[rules]]
id = "drpc-api-key"
description = "DRPC API Key"
regex = '''https://lb\.drpc\.org/[a-zA-Z0-9]+\?.*dkey=[a-zA-Z0-9]+'''
keywords = [
"drpc",
"drpc.org"
]
tags = ["key", "DRPC"]
[[rules]]
id = "dwellir-api-key"
description = "Dwellir API Key"
regex = '''https://api-.*\.dwellir\.com/[a-zA-Z0-9-]+'''
keywords = [
"dwellir",
"dwellir.com"
]
tags = ["key", "Dwellir"]
[[rules]]
id = "startale-api-key"
description = "Startale API Key"
regex = '''https://[a-zA-Z0-9.-]+\.startale\.com.*\?apikey=[a-zA-Z0-9]+'''
keywords = [
"startale",
"startale.com"
]
tags = ["key", "Startale"]
[[rules]]
id = "grove-city-api-key"
description = "Grove City API Key"
regex = '''https://[a-zA-Z0-9-]+\.rpc\.grove\.city/v1/[a-zA-Z0-9]+'''
keywords = [
"grove",
"grove.city"
]
tags = ["key", "Grove City"]