-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCENTRAL_Template_Global_Exclusions.json
More file actions
46 lines (46 loc) · 1.52 KB
/
CENTRAL_Template_Global_Exclusions.json
File metadata and controls
46 lines (46 loc) · 1.52 KB
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
// To obtain further details about data please check : https://developer.sophos.com/docs/endpoint-v1/1/routes/settings/exclusions/scanning/post
// Each entry ought to be structured as follows.
//
// {
// "value": "C:\\xxx",
// "type": "path", (select among path/posixPath, virtualPath, process, web, pua, detectedExploit, amsi, behavioral, journalHashingProcess, journalHashingPath)
// "scanMode": "onDemandAndOnAccess", (select among : onDemand/onAccess/onDemandAndAccess)
// "comment": "This is the trash directory", (Please put a relevant description or comment)
// },
[
{
"value": "C:\\xxx",
"type": "path",
"scanMode": "onDemandAndOnAccess",
"comment": "This is the trash directory",
},
{
"value": "www.sophos.com",
"type": "web",
"scanMode": "onAccess",
"comment": "We can certainly exclude sophos.com website",
},
{
"value": "692ba6a23003f06d34eaf215a817b67f24ca71162ad0d165184119e89cb9c240",
"type": "journalHashingProcess",
"comment": "Hash of the software called hashmyfiles.exe version 2.50 compiled in 64bits mode",
},
{
"value": "notepad++.exe",
"type": "process",
"scanMode": "onDemand",
"comment": "NotePad++ should not be scanned on Demand",
},
{
"value": "/home/*/Documents",
"type": "posixPath",
"scanMode": "onDemand",
"comment": "This the user's documents own directory",
},
{
"value": "192.168.222.2",
"type": "web",
"scanMode": "onAccess",
"comment": "This internal server hosts our internal webserver",
}
]