-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the scope of some rules with dependencies
ref: mandiant/capa#2124
- Loading branch information
1 parent
c454ffb
commit e6befc9
Showing
3 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ rule: | |
authors: | ||
- [email protected] | ||
scopes: | ||
static: function | ||
static: basic block | ||
dynamic: call | ||
att&ck: | ||
- Collection::Input Capture::Keylogging [T1056.001] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,11 @@ rule: | |
authors: | ||
- [email protected] | ||
scopes: | ||
static: function | ||
dynamic: thread | ||
static: instruction | ||
dynamic: call | ||
examples: | ||
- Practical Malware Analysis Lab 12-03.exe_:0x401000 | ||
features: | ||
- and: | ||
- or: | ||
- api: user32.SetWindowsHookEx | ||
- api: user32.UnhookWindowsHookEx | ||
- or: | ||
- api: user32.SetWindowsHookEx | ||
- api: user32.UnhookWindowsHookEx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ rule: | |
- [email protected] | ||
- [email protected] | ||
scopes: | ||
static: function | ||
dynamic: unsupported # requires characteristic features | ||
static: instruction | ||
dynamic: call | ||
att&ck: | ||
- Execution::Shared Modules [T1129] | ||
examples: | ||
|