-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
encrypt data using RC4 via SystemFunction032 (#825)
* RC4 encryption via Advapi32.SystemFunction032
- Loading branch information
1 parent
e454699
commit 18f8a33
Showing
1 changed file
with
26 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
rule: | ||
meta: | ||
name: encrypt data using RC4 via SystemFunction032 | ||
namespace: data-manipulation/encryption/rc4 | ||
authors: | ||
- [email protected] | ||
scope: function | ||
att&ck: | ||
- Defense Evasion::Obfuscated Files or Information [T1027] | ||
mbc: | ||
- Defense Evasion::Obfuscated Files or Information::Encryption-Standard Algorithm [E1027.m05] | ||
- Cryptography::Encrypt Data::RC4 [C0027.009] | ||
references: | ||
- https://doxygen.reactos.org/df/d13/sysfunc_8c_source.html | ||
- https://blog.gentilkiwi.com/tag/systemfunction032 | ||
examples: | ||
- 3BBDF04C25FCD9876733EAA9163B3ED64D81396E7414619758D9376EDF4C103E:0x1000976C # api match | ||
features: | ||
- or: | ||
- api: SystemFunction032 | ||
- and: | ||
- match: link function at runtime on Windows | ||
- string: "SystemFunction032" | ||
- optional: | ||
- string: /advapi32/i | ||
- string: /cryptsp/i |