SYMBOLCOMMON_NAMEaka. SYNONYMS
win.godzilla_loader (Back to overview)

Godzilla Loader

VTCollection     URLhaus    

There is no description at this point.

References
2016-10-25NetScoutASERT Team
TrickBot Banker Insights
Godzilla Loader TrickBot
2016-04-19Kernelmode.info ForumsR136a1
Trojan.GodzillaLoader (alias Godzilla Loader)
Godzilla Loader
Yara Rules
[TLP:WHITE] win_godzilla_loader_auto (20230808 | Detects win.godzilla_loader.)
rule win_godzilla_loader_auto {

    meta:
        author = "Felix Bilstein - yara-signator at cocacoding dot com"
        date = "2023-12-06"
        version = "1"
        description = "Detects win.godzilla_loader."
        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.godzilla_loader"
        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 = { 50 a5 ff512c 85c0 756c }
            // n = 5, score = 1500
            //   50                   | push                eax
            //   a5                   | movsd               dword ptr es:[edi], dword ptr [esi]
            //   ff512c               | call                dword ptr [ecx + 0x2c]
            //   85c0                 | test                eax, eax
            //   756c                 | jne                 0x6e

        $sequence_1 = { a5 50 a5 ff512c 85c0 756c }
            // n = 6, score = 1500
            //   a5                   | movsd               dword ptr es:[edi], dword ptr [esi]
            //   50                   | push                eax
            //   a5                   | movsd               dword ptr es:[edi], dword ptr [esi]
            //   ff512c               | call                dword ptr [ecx + 0x2c]
            //   85c0                 | test                eax, eax
            //   756c                 | jne                 0x6e

        $sequence_2 = { 7406 8b08 50 ff511c }
            // n = 4, score = 1500
            //   7406                 | je                  8
            //   8b08                 | mov                 ecx, dword ptr [eax]
            //   50                   | push                eax
            //   ff511c               | call                dword ptr [ecx + 0x1c]

        $sequence_3 = { a5 ff512c 85c0 756c }
            // n = 4, score = 1500
            //   a5                   | movsd               dword ptr es:[edi], dword ptr [esi]
            //   ff512c               | call                dword ptr [ecx + 0x2c]
            //   85c0                 | test                eax, eax
            //   756c                 | jne                 0x6e

        $sequence_4 = { 6a00 8bf8 8d45fc 50 57 6a01 56 }
            // n = 7, score = 1500
            //   6a00                 | push                0
            //   8bf8                 | mov                 edi, eax
            //   8d45fc               | lea                 eax, [ebp - 4]
            //   50                   | push                eax
            //   57                   | push                edi
            //   6a01                 | push                1
            //   56                   | push                esi

        $sequence_5 = { 51 56 57 ff7508 ff15???????? 8bf0 56 }
            // n = 7, score = 1500
            //   51                   | push                ecx
            //   56                   | push                esi
            //   57                   | push                edi
            //   ff7508               | push                dword ptr [ebp + 8]
            //   ff15????????         |                     
            //   8bf0                 | mov                 esi, eax
            //   56                   | push                esi

        $sequence_6 = { 52 50 ff91f0000000 85c0 7813 }
            // n = 5, score = 1500
            //   52                   | push                edx
            //   50                   | push                eax
            //   ff91f0000000         | call                dword ptr [ecx + 0xf0]
            //   85c0                 | test                eax, eax
            //   7813                 | js                  0x15

        $sequence_7 = { 6a00 6a00 8bf8 8d45fc 50 57 }
            // n = 6, score = 1500
            //   6a00                 | push                0
            //   6a00                 | push                0
            //   8bf8                 | mov                 edi, eax
            //   8d45fc               | lea                 eax, [ebp - 4]
            //   50                   | push                eax
            //   57                   | push                edi

        $sequence_8 = { 57 6a01 56 ff7508 8975fc }
            // n = 5, score = 1500
            //   57                   | push                edi
            //   6a01                 | push                1
            //   56                   | push                esi
            //   ff7508               | push                dword ptr [ebp + 8]
            //   8975fc               | mov                 dword ptr [ebp - 4], esi

        $sequence_9 = { 8b08 50 ff11 85c0 7527 }
            // n = 5, score = 1500
            //   8b08                 | mov                 ecx, dword ptr [eax]
            //   50                   | push                eax
            //   ff11                 | call                dword ptr [ecx]
            //   85c0                 | test                eax, eax
            //   7527                 | jne                 0x29

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