mirror of
https://github.com/mandiant/capa-rules
synced 2026-06-08 15:41:20 +00:00
25f1157db0
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
```
24 lines
660 B
YAML
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
|