【笔记】ShellcodeWrapper学习笔记

前言

通过Arno0x/ShellcodeWrapper实现ShellCode加密

准备工作

下载项目

1
2
git clone https://github.com/Arno0x/ShellcodeWrapper.git
cd ShellcodeWrapper

下载依赖

1
2
3
python2 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

XOR加密

<file>:ShellCode二进制文件
<possword>:密码

1
python2 shellcode_encoder.py -cpp -cs -py <file> <password> xor

AES加密

<file>:ShellCode二进制文件
<possword>:密码

1
python2 shellcode_encoder.py -cpp -cs -py <file> <password> aes

完成