Files
blue-team-tools/rules/windows/builtin/security/win_susp_time_modification.yml
T

33 lines
1.3 KiB
YAML
Raw Normal View History

2019-02-05 18:56:24 -05:00
title: Unauthorized System Time Modification
2019-11-12 23:12:27 +01:00
id: faa031b5-21ed-4e02-8881-2591f98d82ed
2021-11-27 11:33:14 +01:00
status: test
2019-02-05 18:56:24 -05:00
description: Detect scenarios where a potentially unauthorized application or user is modifying the system time.
author: '@neu5ron'
references:
2021-11-27 11:33:14 +01:00
- Private Cuckoo Sandbox (from many years ago, no longer have hash, NDA as well)
- Live environment caused by malware
- https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4616
2019-02-05 18:56:24 -05:00
date: 2019/02/05
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
2019-02-05 18:56:24 -05:00
logsource:
2021-11-27 11:33:14 +01:00
product: windows
service: security
definition: 'Requirements: Audit Policy : System > Audit Security State Change, Group Policy : Computer Configuration\Windows Settings\Security Settings\Advanced Audit Policy Configuration\Audit Policies\System\Audit Security State Change'
2019-02-05 18:56:24 -05:00
detection:
2021-11-27 11:33:14 +01:00
selection:
EventID: 4616
filter1:
2021-12-08 20:12:57 +01:00
ProcessName:
- 'C:\Program Files\VMware\VMware Tools\vmtoolsd.exe'
- 'C:\Windows\System32\VBoxService.exe'
2021-11-27 11:33:14 +01:00
filter2:
ProcessName: 'C:\Windows\System32\svchost.exe'
SubjectUserSid: 'S-1-5-19'
2021-12-08 20:12:57 +01:00
condition: selection and not 1 of filter*
2019-02-05 18:56:24 -05:00
falsepositives:
2021-11-27 11:33:14 +01:00
- HyperV or other virtualization technologies with binary not listed in filter portion of detection
2020-01-27 14:30:09 +01:00
level: medium
2021-11-27 11:33:14 +01:00
tags:
- attack.defense_evasion
- attack.t1070.006