Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: [1148] - enrichment extension #1149

Merged
merged 10 commits into from
Jul 30, 2024
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,12 @@ Thankyou! -->
2. Added `account`, `device`, `email`, `url`, `user` to `evidences` in detection finding. #1000
3. Added `state_id`, `state` to `Digital Signature` object. #1069
4. Added `domain` to `Uniform Resource Locator` object. #1096
5. Added `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078
5. Added `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078
6. Added `type_id` and associated entity objects to `Managed Entity`. #1094
7. Added `vendor_name`, `type`, `type_id` to object `package`. #1093
8. Added `router`, `ids`, and `ips` entries to `type_id` enum in the `Endpoint` object. #1121
9. Added `job` to `Evidence Artifacts` object. #1130
10. Added `created_time`,`desc`, `short_desc`, `reputation`, `src_url` to `enrichment` object. #1149
* #### Platform Extensions

### Bugfixes
Expand Down
5 changes: 5 additions & 0 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -3985,6 +3985,11 @@
}
}
},
"short_desc": {
"caption": "Short Description",
"description": "The sort description that pertains to the object or event. See specific usage.",
PavelJurka marked this conversation as resolved.
Show resolved Hide resolved
"type": "string_t"
},
"signature": {
"caption": "Digital Signature",
"description": "The digital signature of the file.",
Expand Down
20 changes: 20 additions & 0 deletions objects/enrichment.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@
"extends": "object",
"name": "enrichment",
"attributes": {
"created_time": {
"description": "The time when the enrichment data was generated.",
"requirement": "recommended"
},
"data": {
"description": "The enrichment data associated with the attribute and value. The meaning of this data depends on the type the enrichment record.",
"requirement": "required"
},
"desc": {
"description": "A long description of the enrichment data.",
"requirement": "optional"
},
"name": {
"description": "The name of the attribute to which the enriched data pertains.",
"requirement": "required"
Expand All @@ -16,10 +24,22 @@
"description": "The enrichment data provider name.",
"requirement": "recommended"
},
"reputation": {
"description": "The reputation of the enrichment data.",
"requirement": "optional"
},
"short_desc": {
"description": "A short description of the enrichment data.",
"requirement": "recommended"
},
"type": {
"description": "The enrichment type. For example: <code>location</code>.",
"requirement": "recommended"
},
"src_url": {
mikeradka marked this conversation as resolved.
Show resolved Hide resolved
"description": "The URL of the source of the enrichment data.",
"requirement": "recommended"
},
"value": {
"description": "The value of the attribute to which the enriched data pertains.",
"requirement": "required"
Expand Down
Loading