Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ybdt/evasion-hub
免杀、逆向、破解
https://github.com/ybdt/evasion-hub
Last synced: about 1 month ago
JSON representation
免杀、逆向、破解
- Host: GitHub
- URL: https://github.com/ybdt/evasion-hub
- Owner: ybdt
- Created: 2020-09-03T02:42:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T07:29:55.000Z (8 months ago)
- Last Synced: 2024-08-02T15:06:10.279Z (4 months ago)
- Language: C
- Homepage:
- Size: 50 MB
- Stars: 796
- Watchers: 15
- Forks: 151
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - ybdt/evasion-hub - 免杀、逆向、破解 (C)
README
# 前言
仓库从最开始的免杀,延伸到逆向、破解# 免杀对抗
## 思路总结
### 01 睡眠
```
在适当位置添加睡眠语句
C语言 -> Sleep(1000);
```
### 02 垃圾代码
```
添加正常代码段,干扰杀软检测
```
### 03 反沙箱
```
创建启动密码来反沙箱,代码如下
if (argc != 2) {
printf("[-] Need password");
return 0;
}
else if (strcmp(argv[1], "dajipeiniwan") != 0) {
printf("[-] Password incorrect");
return 0;
}
else {
pass;
return 0;
}
```
```
检查当前所在系统的内存大小和CPU核心数
```
```
检查当前所在系统的进程数是否小于40(用来反Defender沙箱)
```