-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathdefinition.json
More file actions
80 lines (80 loc) · 2.32 KB
/
definition.json
File metadata and controls
80 lines (80 loc) · 2.32 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
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
{
"attributes": {
"cookie": {
"description": "Full cookie",
"misp-attribute": "cookie",
"ui-priority": 1
},
"cookie-name": {
"description": "Name of the cookie (if splitted)",
"misp-attribute": "text",
"ui-priority": 0
},
"cookie-value": {
"description": "Value of the cookie (if splitted)",
"misp-attribute": "text",
"ui-priority": 0
},
"expires": {
"description": "Expiration date/time of the cookie",
"disable_correlation": true,
"misp-attribute": "datetime",
"ui-priority": 0
},
"http-only": {
"description": "True if send only through HTTP",
"disable_correlation": true,
"misp-attribute": "boolean",
"sane_default": [
"True",
"False"
],
"ui-priority": 0
},
"path": {
"description": "Path defined in the cookie",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"secure": {
"description": "True if cookie is sent over TLS",
"disable_correlation": true,
"misp-attribute": "boolean",
"sane_default": [
"True",
"False"
],
"ui-priority": 0
},
"text": {
"description": "A description of the cookie.",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"type": {
"description": "Type of cookie and how it's used in this specific object.",
"misp-attribute": "text",
"sane_default": [
"Session management",
"Personalization",
"Tracking",
"Exfiltration",
"Malicious Payload",
"Beaconing"
],
"ui-priority": 0
}
},
"description": "An HTTP cookie (web cookie, browser cookie) is a small piece of data that a server sends to the user's web browser. The browser may store it and send it back with the next request to the same server. Typically, it's used to tell if two requests came from the same browser — keeping a user logged-in, for example. It remembers stateful information for the stateless HTTP protocol. As defined by the Mozilla foundation.",
"meta-category": "network",
"name": "cookie",
"required": [
"cookie",
"cookie-name",
"cookie-value"
],
"uuid": "7755ad19-55c7-4da4-805e-197cf81bbcb8",
"version": 6
}