SYMBOLCOMMON_NAMEaka. SYNONYMS
win.dircrypt (Back to overview)

DirCrypt

VTCollection    

There is no description at this point.

References
2015-03-06Johannes Bader
The DGA of DirCrypt
DirCrypt
Yara Rules
[TLP:WHITE] win_dircrypt_auto (20260504 | Detects win.dircrypt.)
rule win_dircrypt_auto {

    meta:
        author = "Felix Bilstein - yara-signator at cocacoding dot com"
        date = "2026-05-04"
        version = "1"
        description = "Detects win.dircrypt."
        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.dircrypt"
        malpedia_rule_date = "20260422"
        malpedia_hash = "a182e35da64e6d71cb55f125c4d4225196523f14"
        malpedia_version = "20260504"
        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 = { 6a01 6a10 e8???????? 50 }
            // n = 4, score = 900
            //   6a01                 | push                1
            //   6a10                 | push                0x10
            //   e8????????           |                     
            //   50                   | push                eax

        $sequence_1 = { e8???????? 6a00 e8???????? 05d6070000 }
            // n = 4, score = 900
            //   e8????????           |                     
            //   6a00                 | push                0
            //   e8????????           |                     
            //   05d6070000           | add                 eax, 0x7d6

        $sequence_2 = { c705????????01000000 e8???????? e8???????? 833d????????00 7514 68???????? 68???????? }
            // n = 7, score = 900
            //   c705????????01000000     |     
            //   e8????????           |                     
            //   e8????????           |                     
            //   833d????????00       |                     
            //   7514                 | jne                 0x16
            //   68????????           |                     
            //   68????????           |                     

        $sequence_3 = { e8???????? e8???????? e8???????? e8???????? 833d????????00 7514 }
            // n = 6, score = 900
            //   e8????????           |                     
            //   e8????????           |                     
            //   e8????????           |                     
            //   e8????????           |                     
            //   833d????????00       |                     
            //   7514                 | jne                 0x16

        $sequence_4 = { e8???????? e8???????? 68???????? ff15???????? 833d????????00 751a }
            // n = 6, score = 900
            //   e8????????           |                     
            //   e8????????           |                     
            //   68????????           |                     
            //   ff15????????         |                     
            //   833d????????00       |                     
            //   751a                 | jne                 0x1c

        $sequence_5 = { 751a 68???????? e8???????? 05d2070000 50 e8???????? }
            // n = 6, score = 900
            //   751a                 | jne                 0x1c
            //   68????????           |                     
            //   e8????????           |                     
            //   05d2070000           | add                 eax, 0x7d2
            //   50                   | push                eax
            //   e8????????           |                     

        $sequence_6 = { e8???????? 05d3070000 50 6a01 6a02 6a08 8d45e4 }
            // n = 7, score = 900
            //   e8????????           |                     
            //   05d3070000           | add                 eax, 0x7d3
            //   50                   | push                eax
            //   6a01                 | push                1
            //   6a02                 | push                2
            //   6a08                 | push                8
            //   8d45e4               | lea                 eax, [ebp - 0x1c]

        $sequence_7 = { e8???????? 68???????? ff15???????? 833d????????00 751a 68???????? }
            // n = 6, score = 900
            //   e8????????           |                     
            //   68????????           |                     
            //   ff15????????         |                     
            //   833d????????00       |                     
            //   751a                 | jne                 0x1c
            //   68????????           |                     

        $sequence_8 = { 6a06 8d45dc 50 e8???????? 8b45fc }
            // n = 5, score = 900
            //   6a06                 | push                6
            //   8d45dc               | lea                 eax, [ebp - 0x24]
            //   50                   | push                eax
            //   e8????????           |                     
            //   8b45fc               | mov                 eax, dword ptr [ebp - 4]

        $sequence_9 = { e8???????? 68???????? ff15???????? 833d????????00 751a }
            // n = 5, score = 900
            //   e8????????           |                     
            //   68????????           |                     
            //   ff15????????         |                     
            //   833d????????00       |                     
            //   751a                 | jne                 0x1c

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