forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefinition.json
98 lines (98 loc) · 2.39 KB
/
definition.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
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
89
90
91
92
93
94
95
96
97
98
{
"name": "ddos",
"uuid": "e2f124d6-f57c-4f93-99e6-8450545fa05d",
"meta-category": "network",
"description": "DDoS object describes a current DDoS activity from a specific or/and to a specific target. Type of DDoS can be attached to the object as a taxonomy",
"version": 6,
"attributes": {
"total-bps": {
"description": "Bits per second",
"misp-attribute": "counter",
"ui-priority": 0
},
"text": {
"description": "Description of the DDoS",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"domain-dst": {
"description": "Destination domain (victim)",
"misp-attribute": "domain",
"ui-priority": 1,
"categories": [
"Network activity",
"External analysis"
]
},
"ip-dst": {
"description": "Destination IP (victim)",
"misp-attribute": "ip-dst",
"ui-priority": 1,
"categories": [
"Network activity",
"External analysis"
]
},
"ip-src": {
"description": "IP address originating the attack",
"misp-attribute": "ip-src",
"ui-priority": 1,
"categories": [
"Network activity",
"External analysis"
]
},
"dst-port": {
"description": "Destination port of the attack",
"misp-attribute": "port",
"ui-priority": 0,
"categories": [
"Network activity",
"External analysis"
]
},
"src-port": {
"description": "Port originating the attack",
"misp-attribute": "port",
"ui-priority": 0,
"categories": [
"Network activity",
"External analysis"
]
},
"first-seen": {
"description": "Beginning of the attack",
"disable_correlation": true,
"misp-attribute": "datetime",
"ui-priority": 0
},
"protocol": {
"description": "Protocol used for the attack",
"misp-attribute": "text",
"ui-priority": 0,
"values_list": [
"TCP",
"UDP",
"ICMP",
"IP"
]
},
"total-pps": {
"description": "Packets per second",
"misp-attribute": "counter",
"ui-priority": 0
},
"last-seen": {
"description": "End of the attack",
"disable_correlation": true,
"misp-attribute": "datetime",
"ui-priority": 0
}
},
"requiredOneOf": [
"ip-dst",
"ip-src",
"domain-dst"
]
}