Skip to content

Commit 1fbe5f9

Browse files
committed
Merge branch 'main' of github.com:MISP/misp-objects
2 parents 1387abd + d3a5c2c commit 1fbe5f9

3 files changed

Lines changed: 63 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,7 @@ for a specific attribute. An optional **to_ids** boolean field to disable the ID
396396
- [objects/sigmf-recording](https://github.com/MISP/misp-objects/blob/main/objects/sigmf-recording/definition.json) - An object representing a single IQ/RF sample in the Signal Metadata Format Specification (SigMF).
397397
- [objects/social-media-group](https://github.com/MISP/misp-objects/blob/main/objects/social-media-group/definition.json) - Social media group object template describing a public or private group or channel.
398398
- [objects/software](https://github.com/MISP/misp-objects/blob/main/objects/software/definition.json) - The Software object represents high-level properties associated with software, including software products. STIX 2.1 - 6.14.
399+
- [objects/spambee-report](https://github.com/MISP/misp-objects/main/objects/spambee-report/definition.json) - A Spambee analysis report.
399400
- [objects/spearphishing-attachment](https://github.com/MISP/misp-objects/blob/main/objects/spearphishing-attachment/definition.json) - Spearphishing Attachment.
400401
- [objects/spearphishing-link](https://github.com/MISP/misp-objects/blob/main/objects/spearphishing-link/definition.json) - Spearphishing Link.
401402
- [objects/splunk](https://github.com/MISP/misp-objects/blob/main/objects/splunk/definition.json) - Splunk / Splunk ES object.

objects/android-app/definition.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@
77
"ui-priority": 1
88
},
99
"certificate": {
10-
"description": "Android certificate",
10+
"description": "Android certificate (SHA1)",
1111
"misp-attribute": "sha1",
1212
"multiple": true,
1313
"ui-priority": 1
1414
},
15+
"certificate-sha256": {
16+
"description": "Android certificate (SHA256)",
17+
"misp-attribute": "sha256",
18+
"multiple": true,
19+
"ui-priority": 1
20+
},
1521
"domain": {
1622
"description": "Domain used by the app",
1723
"misp-attribute": "domain",
@@ -39,5 +45,5 @@
3945
"sha256"
4046
],
4147
"uuid": "92836f23-4730-4eae-82ac-9f00d5299735",
42-
"version": 1
48+
"version": 2
4349
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"attributes": {
3+
"feedback-requested": {
4+
"description": "User has requested feedback",
5+
"disable_correlation": true,
6+
"misp-attribute": "boolean",
7+
"ui-priority": 0
8+
},
9+
"feedback-sent": {
10+
"description": "Feedback has been sent to user",
11+
"disable_correlation": true,
12+
"misp-attribute": "boolean",
13+
"ui-priority": 0
14+
},
15+
"feedback-time": {
16+
"description": "Timestamp of the feedback",
17+
"disable_correlation": true,
18+
"misp-attribute": "datetime",
19+
"ui-priority": 0
20+
},
21+
"privacy": {
22+
"description": "User has requested privacy",
23+
"disable_correlation": true,
24+
"misp-attribute": "boolean",
25+
"ui-priority": 0
26+
},
27+
"report-status": {
28+
"categories": [
29+
"External analysis"
30+
],
31+
"description": "Result of the Spambee analysis for the submitted email",
32+
"disable_correlation": true,
33+
"misp-attribute": "text",
34+
"ui-priority": 0
35+
},
36+
"report-uid": {
37+
"categories": [
38+
"Internal reference"
39+
],
40+
"description": "Internal reference to the Spambee report",
41+
"disable_correlation": true,
42+
"misp-attribute": "text",
43+
"ui-priority": 0
44+
}
45+
},
46+
"description": "A Spambee analysis report",
47+
"meta-category": "network",
48+
"name": "spambee-report",
49+
"requiredOneOf": [
50+
"report-uid"
51+
],
52+
"uuid": "305d6e6c-bb4d-4b9a-abf5-9f34d1322352",
53+
"version": 3
54+
}

0 commit comments

Comments
 (0)