SYMBOLCOMMON_NAMEaka. SYNONYMS
win.mariposa (Back to overview)

Mariposa

aka: Rimecud, Palevo, Autorun
VTCollection    

There is no description at this point.

References
2019-10-01Brian Krebs
Mariposa Botnet Author, Darkcode Crime Forum Admin Arrested in Germany
NgrBot Mariposa
2010-03-31US-CERTUS-CERT
ICS Advisory (ICSA-10-090-01): Mariposa Botnet
Mariposa
2009-10-08Defence Intelligence, Ministry of Defence UKMatt Thompson
Mariposa Botnet Analysis
Mariposa
Yara Rules
[TLP:WHITE] win_mariposa_auto (20230808 | Detects win.mariposa.)
rule win_mariposa_auto {

    meta:
        author = "Felix Bilstein - yara-signator at cocacoding dot com"
        date = "2023-12-06"
        version = "1"
        description = "Detects win.mariposa."
        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.mariposa"
        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 = { 55 8bec 53 56 bb???????? 43 }
            // n = 6, score = 600
            //   55                   | push                ebp
            //   8bec                 | mov                 ebp, esp
            //   53                   | push                ebx
            //   56                   | push                esi
            //   bb????????           |                     
            //   43                   | inc                 ebx

        $sequence_1 = { ffd3 33c0 50 e8???????? 33c0 }
            // n = 5, score = 600
            //   ffd3                 | call                ebx
            //   33c0                 | xor                 eax, eax
            //   50                   | push                eax
            //   e8????????           |                     
            //   33c0                 | xor                 eax, eax

        $sequence_2 = { 53 56 bb???????? 43 }
            // n = 4, score = 600
            //   53                   | push                ebx
            //   56                   | push                esi
            //   bb????????           |                     
            //   43                   | inc                 ebx

        $sequence_3 = { 885c0cff e2f1 ba???????? 2bd6 8bdc 03da 4b }
            // n = 7, score = 600
            //   885c0cff             | mov                 byte ptr [esp + ecx - 1], bl
            //   e2f1                 | loop                0xfffffff3
            //   ba????????           |                     
            //   2bd6                 | sub                 edx, esi
            //   8bdc                 | mov                 ebx, esp
            //   03da                 | add                 ebx, edx
            //   4b                   | dec                 ebx

        $sequence_4 = { 8a1c0e 02d8 32dc fec0 885c0cff e2f1 }
            // n = 6, score = 600
            //   8a1c0e               | mov                 bl, byte ptr [esi + ecx]
            //   02d8                 | add                 bl, al
            //   32dc                 | xor                 bl, ah
            //   fec0                 | inc                 al
            //   885c0cff             | mov                 byte ptr [esp + ecx - 1], bl
            //   e2f1                 | loop                0xfffffff3

        $sequence_5 = { 8bdc 03da 4b 54 ffd3 33c0 }
            // n = 6, score = 600
            //   8bdc                 | mov                 ebx, esp
            //   03da                 | add                 ebx, edx
            //   4b                   | dec                 ebx
            //   54                   | push                esp
            //   ffd3                 | call                ebx
            //   33c0                 | xor                 eax, eax

        $sequence_6 = { 885c0cff e2f1 ba???????? 2bd6 }
            // n = 4, score = 600
            //   885c0cff             | mov                 byte ptr [esp + ecx - 1], bl
            //   e2f1                 | loop                0xfffffff3
            //   ba????????           |                     
            //   2bd6                 | sub                 edx, esi

        $sequence_7 = { 8a4301 8a6302 f6d0 02c4 d0f8 8a1c0e }
            // n = 6, score = 600
            //   8a4301               | mov                 al, byte ptr [ebx + 1]
            //   8a6302               | mov                 ah, byte ptr [ebx + 2]
            //   f6d0                 | not                 al
            //   02c4                 | add                 al, ah
            //   d0f8                 | sar                 al, 1
            //   8a1c0e               | mov                 bl, byte ptr [esi + ecx]

        $sequence_8 = { 53 56 bb???????? 43 803b00 }
            // n = 5, score = 600
            //   53                   | push                ebx
            //   56                   | push                esi
            //   bb????????           |                     
            //   43                   | inc                 ebx
            //   803b00               | cmp                 byte ptr [ebx], 0

        $sequence_9 = { 03da 4b 54 ffd3 33c0 }
            // n = 5, score = 600
            //   03da                 | add                 ebx, edx
            //   4b                   | dec                 ebx
            //   54                   | push                esp
            //   ffd3                 | call                ebx
            //   33c0                 | xor                 eax, eax

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