gitextract_0xxiom53/ ├── Client/ │ ├── Client.dpr │ ├── Client.dproj │ ├── Client.res │ ├── FormMain.dfm │ ├── FormMain.pas │ ├── FormOperate.dfm │ ├── FormOperate.pas │ ├── SimpleMsgPack.pas │ ├── UnitBuilder.pas │ ├── UnitClientContext.pas │ ├── UnitCommon.pas │ ├── UnitCompress.pas │ ├── UnitCountryInfo.pas │ ├── UnitFormDns.dfm │ ├── UnitFormDns.pas │ ├── UnitGlobal.pas │ ├── UnitRC4.pas │ ├── UnitShellCodes.pas │ └── shellcodes.obj ├── Readme.md └── loader v1.0/ ├── extra_function/ │ ├── add_startup_activex_x86.asm │ ├── add_startup_hklm_x86.asm │ ├── build.bat │ ├── connect_by_socks5.asm │ ├── copy_self_x86.asm │ ├── find_process_by_name_x86.asm │ ├── get_kernel32_base_x64.asm │ ├── get_ntdll_base_x64.asm │ ├── get_proc_from_hash_x64.asm │ ├── inject_to_explorer_code_x64_init.asm │ └── utf16 ├── functions/ │ ├── calc_hash.py │ ├── convert_typedef.py │ ├── functions/ │ │ ├── ReadMe.txt │ │ ├── Release/ │ │ │ ├── cmd_shell.obj │ │ │ ├── functions.Build.CppClean.log │ │ │ ├── functions.log │ │ │ ├── functions.obj │ │ │ ├── functions.tlog/ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── cl.command.1.tlog │ │ │ │ ├── functions.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ ├── information.obj │ │ │ ├── process.obj │ │ │ ├── screenspy.obj │ │ │ ├── shellcode_main.obj │ │ │ ├── thumbnail.obj │ │ │ └── vc120.pdb │ │ ├── apis.inc │ │ ├── bitmap.inc │ │ ├── buffer.inc │ │ ├── cmd_shell.c │ │ ├── define.inc │ │ ├── extra.inc │ │ ├── functions.c │ │ ├── functions.vcxproj │ │ ├── functions.vcxproj.filters │ │ ├── functions.vcxproj.user │ │ ├── global_data.h │ │ ├── information.c │ │ ├── msgpack_lite.inc │ │ ├── order.txt │ │ ├── process.c │ │ ├── proto.inc │ │ ├── screenspy.c │ │ ├── shellcode.inc │ │ ├── shellcode_main.c │ │ ├── shellcodes.h │ │ └── thumbnail.c │ ├── functions.sln │ ├── functions.txt │ └── readme.txt ├── include/ │ ├── global.inc │ ├── useful.inc │ ├── utf16 │ ├── utf16.inc │ └── win32_extra.inc ├── loader_function/ │ ├── loader_function/ │ │ ├── ReadMe.txt │ │ ├── apis.inc │ │ ├── global_data.h │ │ ├── inject_to_explorer.c │ │ ├── inject_to_explorer_code_x86.c │ │ ├── loader_function.cpp │ │ ├── loader_function.vcxproj │ │ ├── loader_function.vcxproj.filters │ │ ├── loader_function.vcxproj.user │ │ ├── order_x64.txt │ │ ├── order_x86.txt │ │ ├── rc4.c │ │ ├── shellcode.inc │ │ ├── shellcodes.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ └── x64_code.c │ └── loader_function.sln ├── loader_main/ │ ├── loader_main.asm │ └── utf16 ├── loader_test.asm ├── shellcodes/ │ ├── shellcodes.asm │ └── shellcodes.obj ├── utf16 └── 文档.txt