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 (20260504 | Detects win.godzilla_loader.)
rule win_godzilla_loader_auto {

    meta:
        author = "Felix Bilstein - yara-signator at cocacoding dot com"
        date = "2026-05-04"
        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 = "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 = { 8b08 53 50 ff91f0000000 }
            // n = 4, score = 1500
            //   8b08                 | mov                 ecx, dword ptr [eax]
            //   53                   | push                ebx
            //   50                   | push                eax
            //   ff91f0000000         | call                dword ptr [ecx + 0xf0]

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

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

        $sequence_3 = { 8d45fc 50 57 6a01 56 ff7508 }
            // n = 6, score = 1500
            //   8d45fc               | lea                 eax, [ebp - 4]
            //   50                   | push                eax
            //   57                   | push                edi
            //   6a01                 | push                1
            //   56                   | push                esi
            //   ff7508               | push                dword ptr [ebp + 8]

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

        $sequence_5 = { 8d45fc 50 57 6a01 56 ff7508 8975fc }
            // n = 7, score = 1500
            //   8d45fc               | lea                 eax, [ebp - 4]
            //   50                   | push                eax
            //   57                   | push                edi
            //   6a01                 | push                1
            //   56                   | push                esi
            //   ff7508               | push                dword ptr [ebp + 8]
            //   8975fc               | mov                 dword ptr [ebp - 4], esi

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

        $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 = { 3bc3 7409 8b08 50 ff9180000000 }
            // n = 5, score = 1500
            //   3bc3                 | cmp                 eax, ebx
            //   7409                 | je                  0xb
            //   8b08                 | mov                 ecx, dword ptr [eax]
            //   50                   | push                eax
            //   ff9180000000         | call                dword ptr [ecx + 0x80]

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

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