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

Expand osint object #1168

Merged
merged 4 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -49,6 +49,7 @@ Thankyou! -->
1. Added `phone_number` to `user` and `ldap_person` objects. #1155
2. Added `has_mfa` to `user` object. #1155
3. Added `vendor_name` to `cvss` object. #1165
4. Added `file`, `reputation`, `subnet`, and `script` to `osint` object. #1168

### Misc
1. Added `user.uid` as an Observable type - `type_id: 31`. #1155
Expand All @@ -57,6 +58,7 @@ Thankyou! -->
4. Added `has_mfa` boolean_t to Dictionary. #1155
5. Deprecate `project_uid`. #1166
6. Added several new enums to `account.type_id`. #1166
7. Added new `file` enum to `osint.type_id`. #1168

## [v1.3.0] - August 1st, 2024

Expand Down
25 changes: 24 additions & 1 deletion objects/osint.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"4":{
"caption":"Hash",
"description":"Any type of hash e.g., MD5, SHA1, SHA2, BLAKE, BLAKE2, etc. generated from a file, malware sample, request header, or otherwise."
"description":"Any type of hash e.g., MD5, SHA1, SHA2, BLAKE, BLAKE2, SSDEEP, VHASH, etc. generated from a file, malware sample, request header, or otherwise used to identify a pertinent artifact."
},
"5":{
"caption":"URL",
Expand All @@ -53,6 +53,10 @@
"caption":"Vulnerability",
"description":"A CVE ID, CWE ID, or other identifier for a weakness, exploit, bug, or misconfiguration."
},
"11":{
"caption":"File",
"description":"A file or metadata about a file."
},
"99":{
"caption":"Other",
"description":"The indicator type is not directly listed."
Expand Down Expand Up @@ -166,6 +170,25 @@
"location":{
"description":"Any pertinent geolocation information related to an indicator or OSINT analysis.",
"requirement":"optional"
},
"file":{
"caption":"Related File",
"description":"Any pertinent file information related to an indicator or OSINT analysis.",
"requirement":"optional"
},
"reputation":{
"description":"Related reputational analysis from third-party engines and analysts for a given indicator or OSINT analysis.",
"requirement":"optional"
},
"subnet":{
"caption":"Related Subnet",
"description":"A CIDR or network block related to an indicator or OSINT analysis.",
"requirement":"optional"
},
"script":{
"caption":"Related Script Data",
"description":"Any pertinent script information related to an indicator or OSINT analysis.",
"requirement":"optional"
}
}
}
Loading