-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathrule_test.json
39 lines (39 loc) · 1.26 KB
/
rule_test.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
{
"name": "MalwLess default",
"version": "0.3",
"author": "n0dec",
"description": "MalwLess default test pack.",
"rules": {
"vssadmin_delete_shadows": {
"enabled": true,
"source": "Sysmon",
"category": "Process Create",
"description": "Deleted shadows copies via vssadmin.",
"payload": {
"Image": "C:\\Windows\\System32\\vssadmin.exe",
"CommandLine": "vssadmin.exe delete shadows /all /quiet"
}
},
"certutil_network_activity": {
"enabled": true,
"source": "Sysmon",
"category": "Network connection detected",
"description": "Network activity from certutil tool.",
"payload": {
"Image": "C:\\Windows\\System32\\certutil.exe",
"DestinationIp": "151.101.132.133",
"DestinationPort": 443
}
},
"powershell_scriptblock": {
"enabled": true,
"source": "PowerShell",
"category": "4104",
"description": "Powershell 4104 event for Invoke-Mimikatz.",
"payload": {
"ScriptBlockText": "function Invoke-Mimikatz\n{\n<#\n.SYNOPSIS\n\nThis script leverages Mimikatz 2.0 and Invoke-ReflectivePEInjection to reflectively load Mimikatz...\nblablabla...",
"Path": ""
}
}
}
}