Tag: Assembly

  • The Ghost in the Kernel: Inside KittyLoader’s Elite Anti-Analysis Arsenal

    The Ghost in the Kernel: Inside KittyLoader’s Elite Anti-Analysis Arsenal

    KittyLoader is a highly evasive loader written in C / Assembly. Features Hijacks early execution by replacing the C runtime entrypoint (__scrt_common_main_seh) with custom assembly. Hides all modules by walking PEB->Ldr lists and unlinking its module entry (LDR_DATA_TABLE_ENTRY) from : InLoadOrderModuleList InInitializationOrderModuleList InMemoryOrderModuleList Deploys a wide variety of anti-analysis techniques, including : Multilayer scoring (debugger,…

  • SHELLSILO: The Tool Translating C Code to Syscall Shellcode for Hackers

    SHELLSILO: The Tool Translating C Code to Syscall Shellcode for Hackers

    SHELLSILO is a cutting-edge tool that translates C syntax into syscall assembly and its corresponding shellcode. It streamlines the process of constructing and utilizing structures, assigning variables, and making system calls. With this tool, integrating strings into your shellcode and initializing Unicode strings has never been easier. SHELLSILO has been tested on two different Windows…