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

Add name property to scrip.json object. #1284

Merged
merged 4 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": {
davemcatcisco marked this conversation as resolved.
Show resolved Hide resolved
"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
Loading