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

New Discovery software inventory class #1134

Merged
merged 5 commits into from
Jul 3, 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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Thankyou! -->
1. Added `Event Log Activity` event class. #1014
2. Added `Remediation Activity` `File Remediation Activity` `Process Remediation Activity` `Network Remediation Activity` event classes. #1066
3. Added `Windows Service Activity` event class to the Windows extension. #1103
4. Added `Software Inventory Info` event class to the Discovery category. #1134
* #### Profiles
1. Added `osint` Profile based on `osint` object. #992
* #### Objects
Expand Down Expand Up @@ -301,4 +302,4 @@ Thankyou! -->

## [v1.0.0]

Initial release of OCSF.
Initial release of OCSF.
31 changes: 31 additions & 0 deletions events/discovery/software_inventory_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"caption": "Software Inventory Info",
"description": "Software Inventory Info events report device software inventory data that is either logged or proactively collected. For example, when collecting device information from a CMDB or running a network sweep of connected devices.",
"extends": "discovery",
"name": "software_info",
"uid": 20,
"profiles": [
"host"
],
"attributes": {
"actor": {
"group": "context",
"requirement": "optional"
},
"device": {
"group": "primary",
"requirement": "required",
"description": "The device that is being discovered by an inventory process."
},
"package": {
"group": "primary",
"requirement": "required",
"description": "The device software that is being discovered by an inventory process."
},
"product": {
"group": "context",
"requirement": "optional",
"description": "Additional product attributes that have been discovered or enriched from a catalog or other external source."
}
}
}
Loading