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
pull/293/head
chrisr3d 2020-09-07 23:56:10 +02:00
parent e3d235ca6e
commit 0ba4909549
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{
"attributes": {
"date": {
"description": "Date fo the ranking.",
"misp-attribute": "datetime",
"ui-priority": 1
},
"position": {
"description": "Position of the ASN for a given day.",
"misp-attribute": "float",
"ui-priority": 0
},
"ranking": {
"description": "Ranking of the Autonomous System number.",
"misp-attribute": "float",
"ui-priority": 1
}
},
"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.",
"meta-category": "network",
"name": "bgp-ranking",
"required": [
"date",
"ranking"
],
"uuid": "0cf87909-e44a-4426-8ebc-a250f932ce00",
"version": 1
}