Skip to content

Commit 052a2d6

Browse files
committed
new: [summariser-output] object to describe an AI-based or NLP-based summariser output
Following the discussion at hackathon.lu 2025 - RSS project for CTI
1 parent 8f60061 commit 052a2d6

1 file changed

Lines changed: 88 additions & 0 deletions

File tree

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"attributes": {
3+
"description": {
4+
"description": "Description of the text summarised.",
5+
"disable_correlation": true,
6+
"misp-attribute": "text",
7+
"ui-priority": 1
8+
},
9+
"original-text": {
10+
"description": "Original text before any processing.",
11+
"disable_correlation": true,
12+
"misp-attribute": "attachment",
13+
"ui-priority": 0
14+
},
15+
"original-text-timestamp": {
16+
"description": "Publication date of the original text (not related to the processing).",
17+
"disable_correlation": true,
18+
"misp-attribute": "datetime",
19+
"ui-priority": 1
20+
},
21+
"original-url": {
22+
"description": "URL of the original text.",
23+
"disable_correlation": true,
24+
"misp-attribute": "link",
25+
"ui-priority": 1
26+
},
27+
"summariser-model": {
28+
"description": "Model used for the summariser",
29+
"misp-attribute": "text",
30+
"multiple": true,
31+
"sane_default": [
32+
"gpt-3.5-turbo",
33+
"gpt-3.5-turbo-16k",
34+
"gpt-3.5-turbo-0125 (16k)",
35+
"gpt-4",
36+
"gpt-4-turbo",
37+
"gpt-4-o",
38+
"gpt-4o-mini"
39+
],
40+
"ui-priority": 0
41+
},
42+
"summariser-timestamp": {
43+
"description": "Date when the summary was produced.",
44+
"disable_correlation": true,
45+
"misp-attribute": "datetime",
46+
"ui-priority": 0
47+
},
48+
"summariser-version": {
49+
"description": "Version of the code used for the summariser.",
50+
"disable_correlation": true,
51+
"misp-attribute": "text",
52+
"ui-priority": 0
53+
},
54+
"summary": {
55+
"description": "Summary of the original text by the AI-based or NLP-based summariser.",
56+
"disable_correlation": true,
57+
"misp-attribute": "text",
58+
"ui-priority": 0
59+
},
60+
"tcode": {
61+
"description": "MITRE ATT&CK Technique ID extracted by the AI-based or NLP-based summariser.",
62+
"disable_correlation": true,
63+
"misp-attribute": "text",
64+
"multiple": true,
65+
"ui-priority": 0
66+
},
67+
"title": {
68+
"description": "Title of the text summarised.",
69+
"disable_correlation": true,
70+
"misp-attribute": "text",
71+
"ui-priority": 0
72+
},
73+
"ttp": {
74+
"description": "TTP of the original text extracted by the AI-based or NLP-based summariser.",
75+
"disable_correlation": true,
76+
"misp-attribute": "text",
77+
"ui-priority": 0
78+
}
79+
},
80+
"description": "Summariser output from an AI-based or NLP summariser.",
81+
"meta-category": "misc",
82+
"name": "summariser-output",
83+
"required": [
84+
"summary"
85+
],
86+
"uuid": "38633d19-123a-4b0f-bc4a-ccb381e58e49",
87+
"version": 1
88+
}

0 commit comments

Comments
 (0)