Merge pull request #75 from chrisr3d/master

legal-entity object
pull/77/head
Alexandre Dulaunoy 2018-02-06 16:11:40 +01:00 committed by GitHub
commit f03b7549bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 0 deletions

View File

@ -82,6 +82,7 @@ for a specific attribute.
* [objects/geolocation](objects/geolocation/definition.json) - A geolocation object to describe a location.
* [objects/ip-port](objects/ip-port/definition.json) - An IP address and a port seen as a tuple (or as a triple) in a specific time frame.
* [objects/ja3](objects/ja3/definition.json) - A ja3 object which describes an SSL client fingerprint in an easy to produce and shareable way.
* [objects/legal-entity](objects/legal-entity/definition.json) - Object describing a legal entity, such as an organisation.
* [objects/macho](objects/macho/definition.json) - Object describing a Mach object file format.
* [objects/macho-section](objects/macho-section/definition.json) - Object describing a section of a Mach object file format.
* [objects/microblog](objects/microblog/definition.json) - Object describing microblog post like Twitter or Facebook.

View File

@ -0,0 +1,48 @@
{
"requiredOneOf": [
"name"
],
"attributes": {
"text": {
"description": "A description of the entity.",
"disable_correlation": true,
"ui-priority": 1,
"misp-attribute": "text"
},
"name": {
"description": "Name of an entity.",
"ui-priority": 0,
"misp-attribute": "text"
},
"commercial-name": {
"description": "Commercial name of an entity.",
"ui-priority": 0,
"misp-attribute": "text"
},
"legal-form": {
"description": "Legal form of an entity.",
"ui-priority": 0,
"misp-attribute": "text"
},
"registration-number": {
"description": "Registration number of an entity in the relevant authority.",
"ui-priority": 0,
"misp-attribute": "text"
},
"business": {
"description": "Business area of an entity.",
"ui-priority": 0,
"misp-attribute": "text"
},
"phone-number": {
"description": "Phone number of an entity.",
"ui-priority": 0,
"misp-attribute": "phone-number"
}
},
"version": 1,
"description": "An object to describe a legal entity.",
"meta-category": "misc",
"uuid": "14f5688f-d89c-469f-9878-c48bf6c41c65",
"name": "legal-entity"
}