Skip to content

Commit

Permalink
Add name property to scrip.json object. (ocsf#1284)
Browse files Browse the repository at this point in the history
Added name field to script object.
Typical usage - the name of the customer script in an excel sheet.

---------

Signed-off-by: Pavel Jurka <[email protected]>
  • Loading branch information
PavelJurka authored Dec 18, 2024
1 parent 4379912 commit d1d1dc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ Thankyou! -->
1. Added `count`, `created_time`, `desc`, `first_seen_time`, `last_seen_time`, `modified_time`, `product`, `severity`, `severity_id`, `tags` & `title` to `related_event` object. #1271
1. Added `drive_type` and `drive_type_id` to the `file` object. #1287
1. Added `cpu_architecture` and `cpu_architecture_id` to `device_hw_info` object. #1278
1. Added `name` to `script` object. #1284


### Bugfixes
1. Added sibling definition to `confidence_id` in dictionary, accurately associating `confidence` as its sibling. #1180
Expand Down
4 changes: 4 additions & 0 deletions objects/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
"description": "An array of the script's cryptographic hashes. Note that these hashes are calculated on the script in its original encoding, and not on the normalized UTF-8 encoding found in the <code>script_content</code> attribute.",
"requirement": "recommended"
},
"name": {
"description": "Unique identifier for the script or macro, independent of the containing file, used for tracking, auditing, and security analysis.",
"requirement": "optional"
},
"parent_uid": {
"description": "This attribute relates a sub-script to a parent script having the matching <code>uid</code> attribute. In the case of PowerShell, sub-script execution can be identified by matching the activity correlation ID of the raw ETW events provided by the OS.",
"requirement": "optional"
Expand Down

0 comments on commit d1d1dc2

Please sign in to comment.