mirror of
https://github.com/vee1e/capa-rules.git
synced 2026-09-01 19:07:15 +00:00
Merge branch 'master' of github.com:fireeye/capa-rules
This commit is contained in:
commit
d33bc13fba
2 changed files with 26 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# capa rules
|
||||
|
||||
[](https://github.com/fireeye/capa-rules/actions?query=workflow%3A%22CI%22)
|
||||
[](rules)
|
||||
[](rules)
|
||||
[](LICENSE.txt)
|
||||
|
||||
This is the standard collection of rules for [capa](https://github.com/fireeye/capa) - the tool to automatically identify capabilities of programs.
|
||||
|
|
|
|||
|
|
@ -0,0 +1,25 @@
|
|||
rule:
|
||||
meta:
|
||||
name: encrypt data using DES via WinAPI
|
||||
namespace: data-manipulation/encryption/des
|
||||
author: "@_re_fox"
|
||||
scope: function
|
||||
att&ck:
|
||||
- Defense Evasion::Obfuscated Files or Information [T1027]
|
||||
examples:
|
||||
- 5f66b82558ca92e54e77f216ef4c066c:0x403377
|
||||
features:
|
||||
- and:
|
||||
- or:
|
||||
- number: 0x6601 = CALG_DES
|
||||
- number: 0x6603 = CALG_3DES
|
||||
- number: 0x6609 = CALG_3DES_112
|
||||
- or:
|
||||
- api: CryptGenKey
|
||||
- api: CryptDeriveKey
|
||||
- api: CryptImportKey
|
||||
- optional:
|
||||
- or:
|
||||
- api: CryptAcquireContext
|
||||
- api: CryptEncrypt
|
||||
- api: CryptDecrypt
|
||||
Loading…
Add table
Add a link
Reference in a new issue