forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
definition.json
100 lines (100 loc) · 2.58 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
99
100
{
"required": [
"url"
],
"attributes": {
"fragment": {
"description": "Fragment identifier is a short string of characters that refers to a resource that is subordinate to another, primary resource.",
"ui-priority": 0,
"misp-attribute": "text"
},
"tld": {
"description": "Top-Level Domain",
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true
},
"port": {
"description": "Port number",
"ui-priority": 0,
"misp-attribute": "port",
"disable_correlation": true
},
"scheme": {
"description": "Scheme",
"sane_default": [
"http",
"https",
"ftp",
"gopher",
"sip"
],
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true
},
"first-seen": {
"description": "First time this URL has been seen",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "datetime"
},
"resource_path": {
"description": "Path (between hostname:port and query)",
"ui-priority": 0,
"misp-attribute": "text"
},
"query_string": {
"description": "Query (after path, preceded by '?')",
"ui-priority": 0,
"misp-attribute": "text"
},
"url": {
"description": "Full URL",
"ui-priority": 1,
"misp-attribute": "url"
},
"domain_without_tld": {
"description": "Domain without Top-Level Domain",
"ui-priority": 0,
"misp-attribute": "text"
},
"domain": {
"description": "Full domain",
"ui-priority": 0,
"misp-attribute": "domain"
},
"subdomain": {
"description": "Subdomain",
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true
},
"credential": {
"description": "Credential (username, password)",
"ui-priority": 0,
"misp-attribute": "text"
},
"text": {
"description": "Description of the URL ",
"ui-priority": 0,
"misp-attribute": "text"
},
"last-seen": {
"description": "Last time this URL has been seen",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "datetime"
},
"host": {
"description": "Full hostname",
"ui-priority": 0,
"misp-attribute": "hostname"
}
},
"version": 5,
"description": "url object describes an url along with its normalized field (like extracted using faup parsing library) and its metadata.",
"meta-category": "network",
"uuid": "60efb77b-40b5-4c46-871b-ed1ed999fce5",
"name": "url"
}