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

37 lines
1.3 KiB
YAML
Raw Normal View History

2019-02-27 15:55:39 +11:00
title: MSHTA Suspicious Execution 01
2019-11-12 23:12:27 +01:00
id: cc7abbd0-762b-41e3-8a26-57ad50d2eea3
2019-03-06 17:09:43 +01:00
status: experimental
2019-02-27 15:55:39 +11:00
description: Detection for mshta.exe suspicious execution patterns sometimes involving file polyglotism
2020-04-02 10:00:00 +02:00
date: 2019/02/22
modified: 2020/08/23
2019-05-18 17:43:31 +02:00
author: Diego Perez (@darkquassar), Markus Neis, Swisscom (Improve Rule)
2019-02-27 15:55:39 +11:00
references:
- http://blog.sevagas.com/?Hacking-around-HTA-files
- https://0x00sec.org/t/clientside-exploitation-in-2018-how-pentesting-has-changed/7356
- https://docs.microsoft.com/en-us/dotnet/standard/data/xml/xslt-stylesheet-scripting-using-msxsl-script
- https://medium.com/tsscyber/pentesting-and-hta-bypassing-powershell-constrained-language-mode-53a42856c997
tags:
- attack.defense_evasion
- attack.t1140
- attack.t1218.005
2019-02-27 15:55:39 +11:00
logsource:
2019-03-06 17:09:43 +01:00
category: process_creation
2019-02-27 15:55:39 +11:00
product: windows
2019-03-06 17:09:43 +01:00
falsepositives:
- False positives depend on scripts and administrative tools used in the monitored environment
level: high
2019-02-27 15:55:39 +11:00
detection:
2019-03-06 17:09:43 +01:00
selection1:
2020-10-15 15:49:26 -03:00
Image|endswith: '\mshta.exe'
CommandLine|contains:
- 'vbscript'
- '.jpg'
- '.png'
- '.lnk'
2020-10-15 15:49:39 -03:00
# - '.chm' # could be prone to false positives
2020-10-15 15:49:26 -03:00
- '.xls'
- '.doc'
- '.zip'
2019-03-06 17:09:43 +01:00
condition:
2019-05-18 17:43:31 +02:00
selection1