forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: [iot-firmware] new object template to describe IoT firmware
The relationship will be often between iot-device and iot-firmware. Ref: https://github.com/C00kie-/workshop-materials
- Loading branch information
Showing
1 changed file
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
{ | ||
"requiredOneOf": [ | ||
"firmware", | ||
"filename", | ||
"binwalk-output" | ||
], | ||
"attributes": { | ||
"firmware": { | ||
"description": "Firmware of the IoT device", | ||
"ui-priority": 10, | ||
"misp-attribute": "attachment", | ||
"multiple": true | ||
}, | ||
"version": { | ||
"description": "Version of the firmware", | ||
"ui-priority": 10, | ||
"misp-attribute": "text", | ||
"multiple": true | ||
}, | ||
"filename": { | ||
"description": "Filename of the firmware", | ||
"ui-priority": 10, | ||
"misp-attribute": "text" | ||
}, | ||
"boot-log": { | ||
"description": "Boot log of the IoT device for this firmware", | ||
"ui-priority": 10, | ||
"misp-attribute": "attachment", | ||
"multiple": true | ||
}, | ||
"binwalk-output": { | ||
"description": "Binwalk output of the firmware image", | ||
"ui-priority": 10, | ||
"misp-attribute": "attachment" | ||
}, | ||
"format": { | ||
"description": "Format of the firmware", | ||
"ui-priority": 10, | ||
"misp-attribute": "text", | ||
"sane_default": [ | ||
"raw", | ||
"Intel hex", | ||
"Motorola S-Record", | ||
"Unknown" | ||
] | ||
}, | ||
"md5": { | ||
"description": "[Insecure] MD5 hash (128 bits)", | ||
"ui-priority": 1, | ||
"misp-attribute": "md5", | ||
"recommended": false | ||
}, | ||
"sha1": { | ||
"description": "[Insecure] Secure Hash Algorithm 1 (160 bits)", | ||
"ui-priority": 1, | ||
"misp-attribute": "sha1", | ||
"recommended": false | ||
}, | ||
"sha224": { | ||
"description": "Secure Hash Algorithm 2 (224 bits)", | ||
"ui-priority": 0, | ||
"misp-attribute": "sha224", | ||
"recommended": false | ||
}, | ||
"sha256": { | ||
"description": "Secure Hash Algorithm 2 (256 bits)", | ||
"ui-priority": 1, | ||
"misp-attribute": "sha256" | ||
}, | ||
"sha384": { | ||
"description": "Secure Hash Algorithm 2 (384 bits)", | ||
"ui-priority": 0, | ||
"misp-attribute": "sha384", | ||
"recommended": false | ||
}, | ||
"sha512": { | ||
"description": "Secure Hash Algorithm 2 (512 bits)", | ||
"ui-priority": 1, | ||
"misp-attribute": "sha512" | ||
}, | ||
"size-in-bytes": { | ||
"description": "Size of the file, in bytes", | ||
"disable_correlation": true, | ||
"ui-priority": 0, | ||
"misp-attribute": "size-in-bytes" | ||
}, | ||
"binwalk-entropy-graph": { | ||
"description": "Entropy graph of the firmware", | ||
"disable_correlation": true, | ||
"ui-priority": 0, | ||
"misp-attribute": "attachment" | ||
} | ||
}, | ||
"version": 1, | ||
"description": "A firmware for an IoT device.", | ||
"meta-category": "iot", | ||
"uuid": "8bafb8fc-d986-4a58-b22b-6b8c7c0e8b70", | ||
"name": "iot-firmware" | ||
} |