Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RIPEMD detection to use round constants. #443

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 12 additions & 16 deletions crypto/crypto_signatures.yar
Original file line number Diff line number Diff line change
Expand Up @@ -315,23 +315,19 @@ rule RC6_Constants {

rule RIPEMD160_Constants {
meta:
author = "phoul (@phoul)"
description = "Look for RIPEMD-160 constants"
date = "2014-01"
version = "0.1"
author = "Ek0n (@Ek0n)"
description = "Look for RIPEMD-160 round constants"
date = "2024-03"
reference = "https://git.openssl.org/?p=openssl.git;a=blob;f=crypto/ripemd/rmdconst.h"
version = "0.2"
strings:
$c0 = { 67452301 }
$c1 = { EFCDAB89 }
$c2 = { 98BADCFE }
$c3 = { 10325476 }
$c4 = { C3D2E1F0 }
$c5 = { 01234567 }
$c6 = { 89ABCDEF }
$c7 = { FEDCBA98 }
$c8 = { 76543210 }
$c9 = { F0E1D2C3 }
$KR0 = { E68BA250 }
$KR1 = { 24D14D5C }
$KR2 = { F33E706D }
$KR3 = { E9766D7A }

condition:
5 of them
any of them
}

rule SHA1_Constants {
Expand Down Expand Up @@ -1577,4 +1573,4 @@ rule SipHash_big_endian_constants {
$c3 = "setybdet"
condition:
2 of them
}
}