mirror of
https://github.com/vee1e/capa-rules.git
synced 2026-09-01 19:07:15 +00:00
* use sequence scope instead of thread scope for "static: function" rules * use sequence scope instead of thread scope for "static: basic block" rules * make runtime linking rules more concise * doc: describe sequence scope * rename "sequence" scope to "span of calls" scope * Update anti-analysis/anti-av/check-for-sandbox-and-av-modules.yml Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com> * Update anti-analysis/anti-vm/vm-detection/check-for-windows-sandbox-via-device.yml Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com> * Update collection/get-geographical-location.yml Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com> * Update collection/file-managers/gather-classicftp-information.yml Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com> * Update collection/database/wmi/reference-wmi-statements.yml Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com> * Update collection/database/sql/reference-sql-statements.yml Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com> --------- Co-authored-by: Mike Hunhoff <mike.hunhoff@gmail.com>
26 lines
1.2 KiB
YAML
Executable file
26 lines
1.2 KiB
YAML
Executable file
rule:
|
|
meta:
|
|
name: hash data using RIPEMD320
|
|
namespace: data-manipulation/hashing/ripemd320
|
|
authors:
|
|
- raymond.leong@mandiant.com
|
|
scopes:
|
|
static: function
|
|
dynamic: span of calls
|
|
references:
|
|
- https://en.wikipedia.org/wiki/RIPEMD-320
|
|
features:
|
|
- or:
|
|
- and:
|
|
- description: Magic initialization constants used in RIPEMD-320
|
|
- number: 0x67452301 = also used in MD5, SHA1, RIPEMD-128, RIPEMD-256, and RIPEMD-320
|
|
- number: 0xEFCDAB89 = also used in MD5, SHA1, RIPEMD-128, RIPEMD-256, and RIPEMD-320
|
|
- number: 0x98BADCFE = also used in MD5, SHA1, RIPEMD-128, RIPEMD-256, and RIPEMD-320
|
|
- number: 0x10325476 = also used in MD5, SHA1, RIPEMD-128, RIPEMD-256, and RIPEMD-320
|
|
- number: 0xC3D2E1F0 = also used in RIPEMD-160 and SHA1
|
|
- number: 0x76543210 = also used in RIPEMD-256
|
|
- number: 0xFEDCBA98 = also used in RIPEMD-256
|
|
- number: 0x89ABCDEF = also used in RIPEMD-256
|
|
- number: 0x01234567 = also used in RIPEMD-256
|
|
- number: 0x3C2D1E0F = unique to RIPEMD-320
|
|
- bytes: 01 23 45 67 89 AB CD EF FE DC BA 98 76 54 32 10 F0 E1 D2 C3 10 32 54 76 98 BA DC FE EF CD AB 89 67 45 23 01 0F 1E 2D 3C
|