2019-10-21 22:22:55 +03:00
title : XSL Script Processing
status : experimental
2019-10-21 23:51:39 +03:00
description : Extensible Stylesheet Language (XSL) files are commonly used to describe the processing and rendering of data within XML files, rule detects when adversaries abuse this functionality to execute arbitrary files while potentially bypassing application whitelisting defenses
2019-10-21 22:22:55 +03:00
author : Timur Zinniatullin, oscd.community
references :
- https://attack.mitre.org/techniques/T1220/
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1220/T1220.yaml
logsource :
2019-10-22 00:06:10 +03:00
category : process_creation
2019-10-21 22:22:55 +03:00
product : windows
detection :
selection1 :
ParentImage :
2019-10-21 23:39:33 +03:00
- '*\wmic.exe'
2019-10-21 22:22:55 +03:00
ParentCommandLine :
2019-10-22 15:20:15 +03:00
- '*/format*' # wmic process list /FORMAT /?
2019-10-21 22:22:55 +03:00
selection2 :
Image :
2019-10-21 23:46:11 +03:00
- '*\msxsl.exe*'
2019-10-21 22:22:55 +03:00
condition :
selection1 or selection2
falsepositives :
2019-10-21 23:46:11 +03:00
- WMIC.exe FP depend on scripts and administrative methods used in the monitored environment
- msxsl.exe is not installed by default so unlikely.
2019-10-21 22:22:55 +03:00
level : medium
tags :
2019-10-22 00:08:46 +03:00
- attack.execution
2019-10-21 22:22:55 +03:00
- attack.t1220