From af6cd788c839ba1e86c88a5377206b59212044f1 Mon Sep 17 00:00:00 2001 From: Jeremy Fisher <106115283+query-jeremy@users.noreply.github.com> Date: Wed, 7 Feb 2024 17:23:52 -0500 Subject: [PATCH] Adding types for new scalar observables --- dictionary.json | 57 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 54 insertions(+), 3 deletions(-) diff --git a/dictionary.json b/dictionary.json index 20cf68b25..d13b823f2 100644 --- a/dictionary.json +++ b/dictionary.json @@ -4028,7 +4028,8 @@ 65535 ], "type": "integer_t", - "type_name": "Integer" + "type_name": "Integer", + "observable": 11 }, "process_name_t": { "caption": "Process Name", @@ -4055,7 +4056,8 @@ "description": "The subnet represented in a CIDR notation, using the format network_address/prefix_length. The network_address can be in either IPv4 or IPv6 format. The prefix length indicates the number of bits used for the network portion, and the remaining bits are available for host addresses within that subnet.
For example:
", "max_len": 42, "type": "string_t", - "type_name": "String" + "type_name": "String", + "observable": 12 }, "timestamp_t": { "caption": "Timestamp", @@ -4083,7 +4085,56 @@ "regex": "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}", "type": "string_t", "type_name": "String" - } + }, + "user_id_t": { + "caption": "User ID", + "description": "User identifier. For example, a Microsoft Active Directory UPN or Google Workspaces Unique ID.", + "type": "string_t", + "type_name": "String", + "observable": 13 + }, + "group_name_t": { + "caption": "Group Name", + "description": "Group Name. For example: it_users", + "type": "string_t", + "type_name": "String", + "observable": 14 + }, + "group_id_t": { + "caption": "Group ID", + "description": "Group identifier.", + "type": "string_t", + "type_name": "String", + "observable": 15 + }, + "vulnerability_id_t": { + "caption": "Vulnerability ID", + "description": "A unique identifier for a reported vulnerability such as a CVE or CWE ID.", + "type": "string_t", + "type_name": "String", + "observable": 16 + }, + "process_id_t": { + "caption": "Process ID", + "description": "A unique identifier for a process", + "type": "string_t", + "type_name": "String", + "observable": 17, + }, + "resource_name_t": { + "caption": "Resource Name", + "description": "The name of a resource", + "type": "string_t", + "type_name": "String", + "observable": 18 + }, + "user_agent_t": { + "caption": "HTTP User Agent", + "description": "An HTTP User Agent. For example AppleWebKit/537.36 (KHTML, like Gecko)", + "type": "string_t", + "type_name": "String", + "observable": 19 + } } } }