You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: wiki/block-lists.md
+33-3Lines changed: 33 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ Supported list stypes
18
18
*[Lists of regular expressions](#lists-of-domains-with-regular-expressions)
19
19
*[Lists of IPs](#lists-of-ips)
20
20
*[Lists of Nets](#lists-of-nets)
21
+
*[Lsits of MD5s](#lists-of-md5s-added-in-v170)
21
22
22
23
[Notes](#notes)
23
24
@@ -110,18 +111,19 @@ adtrack(er|ing)?[0-9]*[_.-]
110
111
^stat(s|istics)?[0-9]*[_.-]
111
112
```
112
113
113
-
**Note**: if you add a domain without regex to this type of list, it'll match everything for that domain: _google.com_ will match _clients6.google.com_, _docs.google.com_, etc.
114
+
**Note**: if you add a domain without a regex to this type of list, it'll match everything for that domain: _google.com_ will match _clients6.google.com_, _docs.google.com_, etc.
114
115
115
-
**Note**: Sometimes regular expressions can be too generic, so they may block too much domains. You can go to Rules tab -> double click on the rule, and see what domains the rule has matched, and refine the list accordingly.
116
+
**Note**: Sometimes regular expressions can be too generic, so they may block too many domains. You can go to Rules tab -> double click on the rule, and see what domains the rule has matched, and refine the list accordingly.
116
117
117
-
**Warning**: This lists must be small (~500 items). Using it with huge lists will lead to important performance penalty ([#866](https://github.com/evilsocket/opensnitch/issues/866)).
118
+
⚠️ **WARNING** ⚠️: This list must be small (~500 items). Using it with huge lists will lead to important performance penalty ([#866](https://github.com/evilsocket/opensnitch/issues/866)).
118
119
119
120
Here's a playground you can use to test regular expressions: https://go.dev/play/p/JzQCeNH4OH1
120
121
121
122
---
122
123
123
124
#### Lists of IPs
124
125
- One per line:
126
+
125
127
IPs
126
128
```
127
129
# https://iplists.firehol.org/
@@ -143,6 +145,32 @@ Nets:
143
145
144
146
---
145
147
148
+
#### Lists of md5s (added in v1.7.0)
149
+
Use this type to allow or block list of md5s.
150
+
151
+
```json
152
+
"operator": {
153
+
"type": "lists",
154
+
"operand": "lists.hash.md5",
155
+
"sensitive": false,
156
+
"data": "/etc/opensnitchd/md5list/",
157
+
"list": []
158
+
}
159
+
```
160
+
161
+
For example you can download a list of known malware in the wild from [bazaar.abuse.ch](https://bazaar.abuse.ch/export/)
0 commit comments