mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
19 lines
842 B
Plaintext
19 lines
842 B
Plaintext
|
rule WinDivert_Driver {
|
||
|
meta:
|
||
|
description = "Detects WinDivert User-Mode packet capturing driver"
|
||
|
author = "Florian Roth"
|
||
|
reference = "https://www.reqrypt.org/windivert.html"
|
||
|
date = "2017-10-02"
|
||
|
score = 40
|
||
|
hash1 = "33c657fa27b92cfcced66b331cfea7a880460a98cf037e4277faa1420fe59d1c"
|
||
|
hash2 = "9b834e8f9d117bf2c564a37434973dc0717270ebfac8d8251711905d18da3858"
|
||
|
hash3 = "5ef707ea68a9bd3a3e568793a0f7d66d166694801ada067d9ebac1d13e53153e"
|
||
|
hash4 = "df12afa691e529f01c75b3dd734f6b45bf1488dbf90ced218657f0d205bff319"
|
||
|
strings:
|
||
|
$s1 = "WinDivertDllEntry" fullword ascii
|
||
|
$s2 = "WinDivertHelperParseIPv4Address" fullword ascii
|
||
|
$s3 = "WinDivert (web: http://reqrypt.org/windivert.html)" fullword wide
|
||
|
condition:
|
||
|
( uint16(0) == 0x5a4d and filesize < 80KB and 1 of them )
|
||
|
}
|