Files
mandiant-capa-rules/linking/runtime-linking/link-function-at-runtime.yml
T
Ana María Martínez Gómez 25f1157db0 Change characteristic syntax in rules
Get rid of `true` in characteristic as it is implicit.

The changes are the result of executing the following commands:
```
find . -type f -exec sed -i.bak "s/\(.*\)characteristic(\(.*\)): true/\1characteristic: \2/g" {} \;
find . -name "*.bak" -type f -delete
```
2020-07-01 19:19:49 +02:00

24 lines
660 B
YAML

rule:
meta:
name: link function at runtime
namespace: linking/runtime-linking
author: moritz.raabe@fireeye.com
scope: function
att&ck:
- Execution::Shared Modules [T1129]
examples:
- 9324D1A8AE37A36AE560C37448C9705A:0x404130
- Practical Malware Analysis Lab 01-04.exe_:0x401350
features:
- and:
- or:
- api: kernel32.LoadLibrary
- api: kernel32.GetModuleHandle
- api: kernel32.GetModuleHandleEx
- api: ntdll.LdrLoadDll
- or:
- api: kernel32.GetProcAddress
- api: ntdll.LdrGetProcedureAddress
- optional:
- characteristic: indirect call