Files
blue-team-tools/rules/windows/process_creation/win_possible_applocker_bypass.yml
T

35 lines
1.2 KiB
YAML
Raw Normal View History

title: Possible Applocker Bypass
2019-11-12 23:12:27 +01:00
id: 82a19e3a-2bfe-4a91-8c0d-5d4c98fbb719
description: Detects execution of executables that can be used to bypass Applocker whitelisting
status: experimental
references:
2019-03-02 00:14:20 +01:00
- https://github.com/subTee/ApplicationWhitelistBypassTechniques/blob/master/TheList.txt
- https://room362.com/post/2014/2014-01-16-application-whitelist-bypass-using-ieexec-dot-exe/
author: juju4
tags:
2019-03-02 00:14:20 +01:00
- attack.defense_evasion
2019-03-06 05:25:12 +01:00
- attack.t1118
- attack.t1121
- attack.t1127
- attack.t1170
logsource:
2019-03-02 00:14:20 +01:00
category: process_creation
product: windows
detection:
2019-03-02 00:14:20 +01:00
selection:
2019-11-08 01:34:30 +03:00
CommandLine|contains:
- '\msdt.exe'
- '\installutil.exe'
- '\regsvcs.exe'
- '\regasm.exe'
# - '\regsvr32.exe' # too many FPs, very noisy
- '\msbuild.exe'
- '\ieexec.exe'
2019-11-08 23:46:41 +01:00
#- '\mshta.exe'
#- '\csc.exe'
2019-03-02 00:14:20 +01:00
condition: selection
falsepositives:
2019-03-02 00:14:20 +01:00
- False positives depend on scripts and administrative tools used in the monitored environment
- Using installutil to add features for .NET applications (primarly would occur in developer environments)
level: low