自解压程序加载木马
简介
步骤
1.压缩图片和木马



2.修改自解压程序图标

3.RLO反转后缀

参考链接
最后更新于
from PIL import Image
# Open the image file
img = Image.open('hacker.png')
# Resize the image
# Most .ico files are 32x32 or 16x16, according to the standard Windows icon size
img = img.resize((32,32))
# Convert and save the image
img.save('hacker.ico', format='ICO')