Skip to content

Commit 0ba4909

Browse files
committed
add: First version of a BGP ranking object to represent the ranking of an ASN at a specific point of time
- We can then associate as many bgp-ranking objects as we need to the corresponding ASN object, each one of them being the ranking of the ASN for a given day
1 parent e3d235c commit 0ba4909

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"attributes": {
3+
"date": {
4+
"description": "Date fo the ranking.",
5+
"misp-attribute": "datetime",
6+
"ui-priority": 1
7+
},
8+
"position": {
9+
"description": "Position of the ASN for a given day.",
10+
"misp-attribute": "float",
11+
"ui-priority": 0
12+
},
13+
"ranking": {
14+
"description": "Ranking of the Autonomous System number.",
15+
"misp-attribute": "float",
16+
"ui-priority": 1
17+
}
18+
},
19+
"description": "BGP Ranking object describing the ranking of an ASN for a given day, along with its position, 1 being the most malicious ASN of the day, with the highest ranking. This object is meant to have a relationship with the corresponding ASN object and represents its ranking for a specific date.",
20+
"meta-category": "network",
21+
"name": "bgp-ranking",
22+
"required": [
23+
"date",
24+
"ranking"
25+
],
26+
"uuid": "0cf87909-e44a-4426-8ebc-a250f932ce00",
27+
"version": 1
28+
}

0 commit comments

Comments
 (0)