mirror of https://github.com/MISP/misp-objects
Merge branch 'main' of github.com:MISP/misp-objects into main
commit
bb26860669
|
@ -116,6 +116,7 @@ for a specific attribute. An optional **to_ids** boolean field to disable the ID
|
|||
- [objects/authenticode-signerinfo](objects/authenticode-signerinfo/definition.json) - Authenticode Signer Info.
|
||||
- [objects/av-signature](objects/av-signature/definition.json) - Antivirus detection signature.
|
||||
- [objects/bank-account](objects/bank-account/definition.json) - An object describing bank account information based on account description from goAML 4.0.
|
||||
- [objects/bgp-ranking](objects/bgp-ranking/definition.json) - An object to link to an asn object to represent the ranking of the Autonomous System for a given day.
|
||||
- [objects/bgp-hijack](objects/bgp-hijack/definition.json) - Object encapsulating BGP Hijack description as specified, for example, by bgpstream.com.
|
||||
- [objects/blog](objects/blog/definition.json) - Blog post like Medium or WordPress.
|
||||
- [objects/boleto](objects/boleto/definition.json) - A common form of payment used in Brazil.
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"attributes": {
|
||||
"address-family": {
|
||||
"description": "The IP address family concerned by the ranking.",
|
||||
"misp-attribute": "text",
|
||||
"sane_default": [
|
||||
"v4",
|
||||
"v6"
|
||||
],
|
||||
"ui-priority": 0
|
||||
},
|
||||
"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
|
||||
}
|
|
@ -118,8 +118,8 @@
|
|||
"date-first-registration",
|
||||
"image-url",
|
||||
"gearbox",
|
||||
"exterior color",
|
||||
"interior color",
|
||||
"exterior-color",
|
||||
"interior-color",
|
||||
"type",
|
||||
"state",
|
||||
"indicative-value"
|
||||
|
|
|
@ -1004,6 +1004,27 @@
|
|||
],
|
||||
"name": "knows"
|
||||
},
|
||||
{
|
||||
"description": "Represents the semantic link of describing another object.",
|
||||
"format": [
|
||||
"misp"
|
||||
],
|
||||
"name": "describes"
|
||||
},
|
||||
{
|
||||
"description": "Represents the semantic link of extending another object.",
|
||||
"format": [
|
||||
"misp"
|
||||
],
|
||||
"name": "extends"
|
||||
},
|
||||
{
|
||||
"description": "Represents the semantic link of an asn object being ranked with a bgp-ranking object",
|
||||
"format": [
|
||||
"misp"
|
||||
],
|
||||
"name": "ranked-with"
|
||||
},
|
||||
{
|
||||
"description": "owns",
|
||||
"format": [
|
||||
|
@ -1097,4 +1118,4 @@
|
|||
}
|
||||
],
|
||||
"version": 21
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue