mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-08 02:08:54 +00:00
05d2de4c26
- Replaced 'service: sysmon' with category: ... for some more events to make the rules more product independent modified: rules/windows/builtin/win_invoke_obfuscation_obfuscated_iex_services.yml modified: rules/windows/malware/mal_azorult_reg.yml modified: rules/windows/powershell/powershell_suspicious_profile_create.yml modified: rules/windows/process_creation/sysmon_cmstp_execution.yml modified: rules/windows/process_creation/win_apt_chafer_mar18.yml modified: rules/windows/process_creation/win_apt_unidentified_nov_18.yml modified: rules/windows/process_creation/win_hktl_createminidump.yml modified: rules/windows/process_creation/win_mal_adwind.yml modified: rules/windows/process_creation/win_silenttrinity_stage_use.yml
30 lines
857 B
YAML
30 lines
857 B
YAML
title: Powershell Profile.ps1 Modification
|
|
id: b5b78988-486d-4a80-b991-930eff3ff8bf
|
|
status: experimental
|
|
description: Detects a change in profile.ps1 of the Powershell profile
|
|
references:
|
|
- https://www.welivesecurity.com/2019/05/29/turla-powershell-usage/
|
|
author: HieuTT35
|
|
date: 2019/10/24
|
|
modified: 2020/08/24
|
|
logsource:
|
|
product: windows
|
|
category: file_event
|
|
detection:
|
|
target1:
|
|
TargetFilename|contains|all:
|
|
- '\My Documents\PowerShell\'
|
|
- '\profile.ps1'
|
|
target2:
|
|
TargetFilename|contains|all:
|
|
- 'C:\Windows\System32\WindowsPowerShell\v1.0\'
|
|
- '\profile.ps1'
|
|
condition: target1 or target2
|
|
falsepositives:
|
|
- System administrator create Powershell profile manually
|
|
level: high
|
|
tags:
|
|
- attack.persistence
|
|
- attack.privilege_escalation
|
|
- attack.t1546.013
|