Skip to content

Commit dcd37b6

Browse files
authored
Merge pull request #502 from MISP/codex/review-pull-request-for-new-object-creation
Add generic `malicious-website` object template
2 parents 995c51f + e813871 commit dcd37b6

1 file changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"attributes": {
3+
"domain": {
4+
"description": "Domain used by the malicious website.",
5+
"misp-attribute": "domain",
6+
"multiple": true,
7+
"ui-priority": 1
8+
},
9+
"external-analysis": {
10+
"description": "Reference URL(s) to external analysis or sandbox reports.",
11+
"disable_correlation": true,
12+
"misp-attribute": "link",
13+
"multiple": true,
14+
"ui-priority": 0
15+
},
16+
"hostname": {
17+
"description": "Hostname used by the malicious website.",
18+
"misp-attribute": "hostname",
19+
"multiple": true,
20+
"ui-priority": 0
21+
},
22+
"ip": {
23+
"description": "IP address used to host the malicious website.",
24+
"misp-attribute": "ip-dst",
25+
"multiple": true,
26+
"ui-priority": 0
27+
},
28+
"reason": {
29+
"description": "Context explaining why this website is considered malicious.",
30+
"misp-attribute": "text",
31+
"ui-priority": 1
32+
},
33+
"source": {
34+
"description": "Source of the intelligence about the malicious website.",
35+
"disable_correlation": true,
36+
"misp-attribute": "text",
37+
"multiple": true,
38+
"ui-priority": 0
39+
},
40+
"status": {
41+
"description": "Current known operational status of the website.",
42+
"disable_correlation": true,
43+
"misp-attribute": "text",
44+
"sane_default": [
45+
"online",
46+
"offline",
47+
"sinkholed",
48+
"takedown"
49+
],
50+
"ui-priority": 0
51+
},
52+
"threat-type": {
53+
"description": "Threat category associated with the malicious website.",
54+
"disable_correlation": true,
55+
"misp-attribute": "text",
56+
"multiple": true,
57+
"sane_default": [
58+
"malware",
59+
"phishing",
60+
"scam",
61+
"c2",
62+
"exploit"
63+
],
64+
"ui-priority": 1
65+
},
66+
"url": {
67+
"description": "URL of the malicious website.",
68+
"misp-attribute": "url",
69+
"multiple": true,
70+
"ui-priority": 1
71+
}
72+
},
73+
"description": "Object describing a malicious website outside of phishing-specific use-cases.",
74+
"meta-category": "network",
75+
"name": "malicious-website",
76+
"requiredOneOf": [
77+
"url",
78+
"domain",
79+
"hostname",
80+
"ip"
81+
],
82+
"uuid": "779a74c9-4d0f-4fd4-ac4e-9f278df9659c",
83+
"version": 1
84+
}

0 commit comments

Comments
 (0)