Files
blue-team-tools/rules/apt/apt_apt29_tor.yml
T

20 lines
832 B
YAML
Raw Normal View History

2017-03-31 19:31:13 +02:00
title: APT29 Google Update Service Install
2017-04-01 10:30:36 +02:00
description: 'This method detects malicious services mentioned in APT29 report by FireEye. The legitimate path for the Google update service is C:\Program Files (x86)\Google\Update\GoogleUpdate.exe so the service names and executable locations used by APT29 are specific enough to be detected in log files.'
2017-03-31 19:31:13 +02:00
reference: https://www.fireeye.com/blog/threat-research/2017/03/apt29_domain_frontin.html
logsource:
product: windows
detection:
2017-04-01 10:30:36 +02:00
selection1:
2017-03-31 19:31:13 +02:00
EventID: 7045
ServiceName: 'Google Update'
2017-04-01 10:30:36 +02:00
selection2:
EventID: 4688
NewProcessName:
- 'C:\Program Files(x86)\Google\GoogleService.exe'
- 'C:\Program Files(x86)\Google\GoogleUpdate.exe'
condition: selection1 or selection2
2017-03-31 19:31:13 +02:00
falsepositives:
- Unknown
level: high
2017-04-01 10:30:36 +02:00