SYMBOLCOMMON_NAMEaka. SYNONYMS
win.wonknu (Back to overview)

Wonknu

VTCollection    

There is no description at this point.

References
2022-07-18Palo Alto Networks Unit 42Unit 42
Iron Taurus
CHINACHOPPER Ghost RAT Wonknu ZXShell APT27
Yara Rules
[TLP:WHITE] win_wonknu_auto (20230808 | Detects win.wonknu.)
rule win_wonknu_auto {

    meta:
        author = "Felix Bilstein - yara-signator at cocacoding dot com"
        date = "2023-12-06"
        version = "1"
        description = "Detects win.wonknu."
        info = "autogenerated rule brought to you by yara-signator"
        tool = "yara-signator v0.6.0"
        signator_config = "callsandjumps;datarefs;binvalue"
        malpedia_reference = "https://malpedia.caad.fkie.fraunhofer.de/details/win.wonknu"
        malpedia_rule_date = "20231130"
        malpedia_hash = "fc8a0e9f343f6d6ded9e7df1a64dac0cc68d7351"
        malpedia_version = "20230808"
        malpedia_license = "CC BY-SA 4.0"
        malpedia_sharing = "TLP:WHITE"

    /* DISCLAIMER
     * The strings used in this rule have been automatically selected from the
     * disassembly of memory dumps and unpacked files, using YARA-Signator.
     * The code and documentation is published here:
     * https://github.com/fxb-cocacoding/yara-signator
     * As Malpedia is used as data source, please note that for a given
     * number of families, only single samples are documented.
     * This likely impacts the degree of generalization these rules will offer.
     * Take the described generation method also into consideration when you
     * apply the rules in your use cases and assign them confidence levels.
     */


    strings:
        $sequence_0 = { e8???????? 8bfc b901050000 f3a5 8bcb }
            // n = 5, score = 200
            //   e8????????           |                     
            //   8bfc                 | mov                 edi, esp
            //   b901050000           | mov                 ecx, 0x501
            //   f3a5                 | rep movsd           dword ptr es:[edi], dword ptr [esi]
            //   8bcb                 | mov                 ecx, ebx

        $sequence_1 = { e8???????? 8bfc b901050000 f3a5 8bcb e8???????? }
            // n = 6, score = 200
            //   e8????????           |                     
            //   8bfc                 | mov                 edi, esp
            //   b901050000           | mov                 ecx, 0x501
            //   f3a5                 | rep movsd           dword ptr es:[edi], dword ptr [esi]
            //   8bcb                 | mov                 ecx, ebx
            //   e8????????           |                     

        $sequence_2 = { b901050000 f3a5 8bcb e8???????? 803b00 }
            // n = 5, score = 200
            //   b901050000           | mov                 ecx, 0x501
            //   f3a5                 | rep movsd           dword ptr es:[edi], dword ptr [esi]
            //   8bcb                 | mov                 ecx, ebx
            //   e8????????           |                     
            //   803b00               | cmp                 byte ptr [ebx], 0

        $sequence_3 = { 6a04 50 ff15???????? 68???????? }
            // n = 4, score = 200
            //   6a04                 | push                4
            //   50                   | push                eax
            //   ff15????????         |                     
            //   68????????           |                     

        $sequence_4 = { e8???????? 8bfc b901050000 f3a5 8bcb e8???????? 803b00 }
            // n = 7, score = 200
            //   e8????????           |                     
            //   8bfc                 | mov                 edi, esp
            //   b901050000           | mov                 ecx, 0x501
            //   f3a5                 | rep movsd           dword ptr es:[edi], dword ptr [esi]
            //   8bcb                 | mov                 ecx, ebx
            //   e8????????           |                     
            //   803b00               | cmp                 byte ptr [ebx], 0

        $sequence_5 = { e8???????? 8bfc b901050000 f3a5 }
            // n = 4, score = 200
            //   e8????????           |                     
            //   8bfc                 | mov                 edi, esp
            //   b901050000           | mov                 ecx, 0x501
            //   f3a5                 | rep movsd           dword ptr es:[edi], dword ptr [esi]

        $sequence_6 = { eb08 c6840550ffffff00 8d8550ffffff 50 }
            // n = 4, score = 200
            //   eb08                 | jmp                 0xa
            //   c6840550ffffff00     | mov                 byte ptr [ebp + eax - 0xb0], 0
            //   8d8550ffffff         | lea                 eax, [ebp - 0xb0]
            //   50                   | push                eax

        $sequence_7 = { 53 56 57 6804140000 }
            // n = 4, score = 200
            //   53                   | push                ebx
            //   56                   | push                esi
            //   57                   | push                edi
            //   6804140000           | push                0x1404

        $sequence_8 = { c6840550ffffff00 8d8550ffffff 50 e8???????? }
            // n = 4, score = 200
            //   c6840550ffffff00     | mov                 byte ptr [ebp + eax - 0xb0], 0
            //   8d8550ffffff         | lea                 eax, [ebp - 0xb0]
            //   50                   | push                eax
            //   e8????????           |                     

        $sequence_9 = { 8d7e28 57 ff15???????? 8b4608 }
            // n = 4, score = 200
            //   8d7e28               | lea                 edi, [esi + 0x28]
            //   57                   | push                edi
            //   ff15????????         |                     
            //   8b4608               | mov                 eax, dword ptr [esi + 8]

    condition:
        7 of them and filesize < 540672
}
Download all Yara Rules