Commit 89db04c6 by Marc Rivero López Committed by GitHub

Update APT_furtim.yar

parent 7b4c13a2
...@@ -3,42 +3,46 @@ ...@@ -3,42 +3,46 @@
*/ */
rule Furtim_nativeDLL { rule Furtim_nativeDLL
meta: {
description = "Detects Furtim malware - file native.dll"
author = "Florian Roth"
reference = "MISP 3971"
date = "2016-06-13"
hash1 = "4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948"
strings:
$s1 = "FqkVpTvBwTrhPFjfFF6ZQRK44hHl26" fullword ascii
$op0 = { e0 b3 42 00 c7 84 24 ac } /* Opcode */ meta:
$op1 = { a1 e0 79 44 00 56 ff 90 10 01 00 00 a1 e0 79 44 } /* Opcode */ description = "Detects Furtim malware - file native.dll"
$op2 = { bf d0 25 44 00 57 89 4d f0 ff 90 d4 02 00 00 59 } /* Opcode */ author = "Florian Roth"
condition: reference = "MISP 3971"
uint16(0) == 0x5a4d and filesize < 900KB and $s1 or all of ($op*) date = "2016-06-13"
hash1 = "4f39d3e70ed1278d5fa83ed9f148ca92383ec662ac34635f7e56cc42eeaee948"
strings:
$s1 = "FqkVpTvBwTrhPFjfFF6ZQRK44hHl26" fullword ascii
$op0 = { e0 b3 42 00 c7 84 24 ac } /* Opcode */
$op1 = { a1 e0 79 44 00 56 ff 90 10 01 00 00 a1 e0 79 44 } /* Opcode */
$op2 = { bf d0 25 44 00 57 89 4d f0 ff 90 d4 02 00 00 59 } /* Opcode */
condition:
uint16(0) == 0x5a4d and filesize < 900KB and $s1 or all of ($op*)
} }
rule Furtim_Parent_1 { rule Furtim_Parent_1
meta: {
description = "Detects Furtim Parent Malware"
author = "Florian Roth" meta:
reference = "https://sentinelone.com/blogs/sfg-furtims-parent/" description = "Detects Furtim Parent Malware"
date = "2016-07-16" author = "Florian Roth"
hash1 = "766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963" reference = "https://sentinelone.com/blogs/sfg-furtims-parent/"
strings: date = "2016-07-16"
/* RC4 encryption password */ hash1 = "766e49811c0bb7cce217e72e73a6aa866c15de0ba11d7dda3bd7e9ec33ed6963"
$x1 = "dqrChZonUF" fullword ascii
/* Other strings */ strings:
$s1 = "Egistec" fullword wide /* RC4 encryption password */
$s2 = "Copyright (C) 2016" fullword wide $x1 = "dqrChZonUF" fullword ascii
/* Op Code */ /* Other strings */
$op1 = { c0 ea 02 88 55 f8 8a d1 80 e2 03 } $s1 = "Egistec" fullword wide
$op2 = { 5d fe 88 55 f9 8a d0 80 e2 0f c0 } $s2 = "Copyright (C) 2016" fullword wide
$op3 = { c4 0c 8a d9 c0 eb 02 80 e1 03 88 5d f8 8a d8 c0 } /* Op Code */
condition: $op1 = { c0 ea 02 88 55 f8 8a d1 80 e2 03 }
( uint16(0) == 0x5a4d and filesize < 900KB and $op2 = { 5d fe 88 55 f9 8a d0 80 e2 0f c0 }
( $x1 or ( all of ($s*) and all of ($op*) ) ) ) or $op3 = { c4 0c 8a d9 c0 eb 02 80 e1 03 88 5d f8 8a d8 c0 }
all of them
condition:
( uint16(0) == 0x5a4d and filesize < 900KB and ( $x1 or ( all of ($s*) and all of ($op*) ) ) ) or all of them
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment