new: [short-message-service] Short Message Service (SMS) object template describing one or more SMS message added

pull/111/head
Alexandre Dulaunoy 2018-07-18 09:52:31 +02:00
parent 319c2a3e96
commit 6bfa279701
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
2 changed files with 48 additions and 0 deletions

View File

@ -113,6 +113,7 @@ for a specific attribute.
* [objects/sandbox-report](objects/sandbox-report/definition.json) - Sandbox report object.
* [objects/sb-signature](objects/sb-signature/definition.json) - Sandbox detection signature object.
* [objects/script](objects/script/definition.json) - Object describing a computer program written to be run in a special run-time environment. The script or shell script can be used for malicious activities but also as support tools for threat analysts.
* [objects/short-message-service](objects/short-message-service/definition.json) - Short Message Service (SMS) object template describing one or more SMS message(s).
* [objects/shortened-link](objects/shortened-link/definition.json) - Shortened link and its redirect target.
* [objects/ss7-attack](objects/ss7-attack/definition.json) - SS7 object of an attack seen on a GSM, UMTS or LTE network via SS7 logging.
* [objects/stix2-pattern](objects/stix2-pattern/definition.json) - An object describing a STIX pattern. The object can be linked via a relationship to other attributes or objects to describe how it can be represented as a STIX pattern.

View File

@ -0,0 +1,47 @@
{
"requiredOneOf": [
"body",
"from"
],
"attributes": {
"body": {
"description": "Message body of the SMS",
"ui-priority": 1,
"misp-attribute": "text"
},
"url-rfc5724": {
"description": "url representing SMS using RFC 5724 (not url contained in the SMS which should use an url object)",
"ui-priority": 6,
"misp-attribute": "url"
},
"from": {
"description": "Phone number used to send the SMS",
"ui-priority": 1,
"misp-attribute": "phone-number",
"multiple": true
},
"to": {
"description": "Phone number receiving the SMS",
"ui-priority": 1,
"misp-attribute": "phone-number",
"multiple": true
},
"sent-date": {
"description": "Initial sent date of the SMS",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
},
"received-date": {
"description": "Received date of the SMS",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
}
},
"version": 1,
"description": "Short Message Service (SMS) object template describing one or more SMS message. Restriction of the initial format 3GPP 23.038 GSM character set doesn't apply.",
"meta-category": "misc",
"uuid": "4851a3dc-e1a6-43ac-9d97-f0d13a099fd2",
"name": "short-message-service"
}