Skip to content

Commit 97dd01e

Browse files
committed
Create mal_xlogin_nov24.yar
1 parent 30b0714 commit 97dd01e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

yara/mal_xlogin_nov24.yar

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
rule MAL_ELF_Xlogin_Nov24_1 {
3+
meta:
4+
description = "Detects xlogin backdoor samples"
5+
author = "Florian Roth"
6+
reference = "https://blog.sekoia.io/solving-the-7777-botnet-enigma-a-cybersecurity-quest/"
7+
date = "2024-11-11"
8+
score = 80
9+
hash1 = "2b09a6811a9d0447f8c6480430eb0f7e3ff64fa933d0b2e8cd6117f38382cc6a"
10+
hash2 = "d1cbf80786b1ca1ba2e5c31ec09159be276ad3d10fc0a8a0dbff229d8263ca0a"
11+
hash3 = "ff17e9bcc1ed16985713405b95745e47674ec98e3c6c889df797600718a35b2c"
12+
strings:
13+
$xc1 = { 6C 6F 67 69 6E 3A 00 25 73 00 00 2F 62 69 6E 2F 73 68 00 2F 74 6D 70 2F 6C 6F 67 69 6E }
14+
15+
$s1 = "/tmp/login" ascii fullword
16+
$s2 = "npxXoudifFeEgGaACSnmcs[" ascii fullword
17+
18+
$sc1 = { 28 6E 69 6C 29 00 00 00 28 6E 75 6C 6C 29 }
19+
condition:
20+
uint16(0) == 0x457f
21+
and filesize < 500KB
22+
and ( 1 of ($x*) or 2 of them )
23+
}

0 commit comments

Comments
 (0)