Skip to content

Commit

Permalink
Collect additional fields for alert telemetry. (#101578)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjhampton authored Jun 8, 2021
1 parent c1924c3 commit f0e2a50
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions x-pack/plugins/security_solution/server/lib/telemetry/sender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,9 @@ const allowlistProcessFields: AllowlistFields = {
command_line: true,
hash: true,
pid: true,
pe: {
original_file_name: true,
},
uptime: true,
Ext: {
architecture: true,
Expand All @@ -313,6 +316,9 @@ const allowlistBaseEventFields: AllowlistFields = {
path: true,
code_signature: true,
malware_signature: true,
pe: {
original_file_name: true,
},
},
event: true,
file: {
Expand All @@ -326,6 +332,7 @@ const allowlistBaseEventFields: AllowlistFields = {
hash: true,
Ext: {
code_signature: true,
header_data: true,
malware_classification: true,
malware_signature: true,
quarantine_result: true,
Expand All @@ -351,6 +358,9 @@ const allowlistBaseEventFields: AllowlistFields = {
...allowlistProcessFields,
},
},
user: {
id: true,
},
};

// Allow list for the data we include in the events. True means that it is deep-cloned
Expand Down

0 comments on commit f0e2a50

Please sign in to comment.