SYMBOLCOMMON_NAMEaka. SYNONYMS
win.dripion (Back to overview)

Dripion

aka: Masson
VTCollection    

There is no description at this point.

References
2016-03-29SymantecJon DiMaggio
Taiwan targeted with new cyberespionage back door Trojan
Dripion Budminer
Yara Rules
[TLP:WHITE] win_dripion_auto (20230808 | Detects win.dripion.)
rule win_dripion_auto {

    meta:
        author = "Felix Bilstein - yara-signator at cocacoding dot com"
        date = "2023-12-06"
        version = "1"
        description = "Detects win.dripion."
        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.dripion"
        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 = { ffd6 8bf8 ffd6 0faff8 ffd6 }
            // n = 5, score = 400
            //   ffd6                 | call                esi
            //   8bf8                 | mov                 edi, eax
            //   ffd6                 | call                esi
            //   0faff8               | imul                edi, eax
            //   ffd6                 | call                esi

        $sequence_1 = { 03f8 7402 ffd6 ffd6 }
            // n = 4, score = 400
            //   03f8                 | add                 edi, eax
            //   7402                 | je                  4
            //   ffd6                 | call                esi
            //   ffd6                 | call                esi

        $sequence_2 = { ffd6 8bf8 ffd6 0faff8 8d3c7f }
            // n = 5, score = 400
            //   ffd6                 | call                esi
            //   8bf8                 | mov                 edi, eax
            //   ffd6                 | call                esi
            //   0faff8               | imul                edi, eax
            //   8d3c7f               | lea                 edi, [edi + edi*2]

        $sequence_3 = { 03f8 ffd6 8bd8 ffd6 0fafd8 ffd6 }
            // n = 6, score = 400
            //   03f8                 | add                 edi, eax
            //   ffd6                 | call                esi
            //   8bd8                 | mov                 ebx, eax
            //   ffd6                 | call                esi
            //   0fafd8               | imul                ebx, eax
            //   ffd6                 | call                esi

        $sequence_4 = { ffd6 03f8 8d3c7f ffd6 }
            // n = 4, score = 400
            //   ffd6                 | call                esi
            //   03f8                 | add                 edi, eax
            //   8d3c7f               | lea                 edi, [edi + edi*2]
            //   ffd6                 | call                esi

        $sequence_5 = { 7513 6a64 ff15???????? 68???????? }
            // n = 4, score = 400
            //   7513                 | jne                 0x15
            //   6a64                 | push                0x64
            //   ff15????????         |                     
            //   68????????           |                     

        $sequence_6 = { 8bf8 ffd6 0faff8 8d3c7f }
            // n = 4, score = 400
            //   8bf8                 | mov                 edi, eax
            //   ffd6                 | call                esi
            //   0faff8               | imul                edi, eax
            //   8d3c7f               | lea                 edi, [edi + edi*2]

        $sequence_7 = { ffd6 03f8 ffd6 8bd8 }
            // n = 4, score = 400
            //   ffd6                 | call                esi
            //   03f8                 | add                 edi, eax
            //   ffd6                 | call                esi
            //   8bd8                 | mov                 ebx, eax

        $sequence_8 = { 7402 ffd6 ffd6 ffd6 }
            // n = 4, score = 400
            //   7402                 | je                  4
            //   ffd6                 | call                esi
            //   ffd6                 | call                esi
            //   ffd6                 | call                esi

        $sequence_9 = { ffd6 03f8 7402 ffd6 }
            // n = 4, score = 400
            //   ffd6                 | call                esi
            //   03f8                 | add                 edi, eax
            //   7402                 | je                  4
            //   ffd6                 | call                esi

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