Skip to content

Commit

Permalink
Adding new fields to the allowlist for alert telemetry (#90868)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeska authored Feb 10, 2021
1 parent f563a82 commit d1653bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,8 @@ export class EndpointDocGenerator {
version: '3.0.33',
},
temp_file_path: 'C:/temp/fake_malware.exe',
quarantine_result: true,
quarantine_message: 'fake quarantine message',
},
},
process: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ describe('TelemetryEventsSender', () => {
malware_classification: {
key1: 'X',
},
quarantine_result: true,
quarantine_message: 'this file is bad',
something_else: 'nope',
},
},
Expand Down Expand Up @@ -79,6 +81,8 @@ describe('TelemetryEventsSender', () => {
malware_classification: {
key1: 'X',
},
quarantine_result: true,
quarantine_message: 'this file is bad',
},
},
host: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,8 @@ const allowlistEventFields: AllowlistFields = {
Ext: {
code_signature: true,
malware_classification: true,
quarantine_result: true,
quarantine_message: true,
},
},
host: {
Expand Down

0 comments on commit d1653bc

Please sign in to comment.