Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/XTeam-Wing/X-AV
X系列安全工具-AV免杀框架-BypassAV
https://github.com/XTeam-Wing/X-AV
Last synced: 21 days ago
JSON representation
X系列安全工具-AV免杀框架-BypassAV
- Host: GitHub
- URL: https://github.com/XTeam-Wing/X-AV
- Owner: XTeam-Wing
- Created: 2021-05-14T06:33:52.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-06T03:16:42.000Z (about 2 years ago)
- Last Synced: 2024-08-05T17:41:45.222Z (4 months ago)
- Size: 14.6 KB
- Stars: 204
- Watchers: 11
- Forks: 32
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - XTeam-Wing/X-AV - X系列安全工具-AV免杀框架-BypassAV (Others)
README
# X-AV
X系列安全工具-AV免杀框架-BypassAV源码在知识星球RedTeaming
## 加载方式
- Syscall
- Uuid
- CreateFiber
- CreateProcessWithPipe
- EtwpCreateEtwThread
- 等## 加密方式
- XOR
- RC4
- AES256## 沙盒检测,动态防御
## 符号表混淆,静态分析防御
## 权限维持
权限维持功能目前还没有加入
## 生成伪造证书
有点多余,可选项。
## 使用方法```
❯ ./X-AV -h____ _ _ _ ____ _ _____ _
/ ___|| |__ ___| | |/ ___|___ __| | __|_ _|__ ___ | |___
\___ \| '_ \ / _ \ | | | / _ \ / _` |/ _ \| |/ _ \ / _ \| / __|
___) | | | | __/ | | |__| (_) | (_| | __/| | (_) | (_) | \__ \
|____/|_| |_|\___|_|_|\____\___/ \__,_|\___||_|\___/ \___/|_|___/Version 1.0-RedTeamWing
Loader Method:
CreateFiber
Syscall
CreateProcess
CreateProcessWithPipe
CreateRemoteTread
CreateRemoteTreadNative
CreateThread
CreateThreadNative
UUIDFromString
RtlCreateUserThread
EtwpCreateEtwThreadEncryption Method:
Xor
AES256
RC4Usage of ./X-AV:
-domain string
fake domain
-encrypt string
chose encryption (default "hex")
-key string
encryption key (default "1314")
-loadermethod string
选择shellcode加载方式 (default "CREATEFIBER")
-o string
output path (default "boomsec.exe")
-password string
fake domain cert password (default "201314")
-persistence
Persistence[True or False]
-salt string
aes 加密的salt
-sandbox
Bypass Sandbox Check (default true)
-shellcodepath string
shellcode path (default "shellcode.bin")
-v display detail infomation
```
### XOR加密
每种加密都支持前面五种加载方法
```
./X-AV -shellcodepath cdn.bin -o xor.exe -key wing -encrypt xor -loadermethod uuid
```
![](https://i.loli.net/2021/05/14/2HfmgtLoRdKiWkG.png)
### AES加密
aes需要加salt
```
./X-AV -shellcodepath cdn.bin -o aes.exe -key wing -encrypt aes -loadermethod uuid -salt wing
```
### RC4
```
./X-AV -shellcodepath cdn.bin -o rc4.exe -key wing -encrypt rc4 -loadermethod uuid
```## 测试结果
对象:WindowsDefender
基本测试这个AV就行了
![](https://i.loli.net/2021/05/14/Q8RvafxMIFKGXWU.png)![image](https://user-images.githubusercontent.com/25416365/118236750-0ded1700-b4c9-11eb-8e63-1b92b6f668b5.png)