Files
blue-team-tools/rules/windows/create_remote_thread/sysmon_createremotethread_loadlibrary.yml
T

24 lines
684 B
YAML
Raw Normal View History

title: CreateRemoteThread API and LoadLibrary
2019-12-19 23:56:36 +01:00
id: 052ec6f6-1adc-41e6-907a-f1c813478bee
2021-11-27 11:33:14 +01:00
status: test
2019-11-10 18:43:41 +03:00
description: Detects potential use of CreateRemoteThread api and LoadLibrary function to inject DLL into a process
author: Roberto Rodriguez @Cyb3rWard0g
references:
2021-11-27 11:33:14 +01:00
- https://threathunterplaybook.com/notebooks/windows/05_defense_evasion/WIN-180719170510.html
date: 2019/08/11
modified: 2021/11/27
logsource:
2021-11-27 11:33:14 +01:00
product: windows
category: create_remote_thread
detection:
2021-11-27 11:33:14 +01:00
selection:
StartModule|endswith: '\kernel32.dll'
StartFunction: 'LoadLibraryA'
condition: selection
falsepositives:
2021-11-27 11:33:14 +01:00
- Unknown
level: critical
2021-11-27 11:33:14 +01:00
tags:
- attack.defense_evasion
- attack.t1055.001