Do minor style cleanup
parent
d38adef5cc
commit
093c2e3ace
|
@ -14,17 +14,15 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
super(update_info(info,
|
||||
'Name' => 'Novell ZENworks Configuration Management Arbitrary File Upload',
|
||||
'Description' => %q{
|
||||
This module exploits a file upload vulnerability in Novell ZENworks
|
||||
Configuration Management (ZCM, which is part of the ZENworks Suite).
|
||||
The vulnerability exists in UploadServlet which accepts unauthenticated
|
||||
file uploads and does not check the "uid" parameter for directory traversal
|
||||
characters. This allows an attacker to write anywhere in the file system,
|
||||
and can be abused to deploy a WAR file in the Tomcat webapps directory.
|
||||
ZCM up to (and including) 11.3.1 is vulnerable to this attack. This module
|
||||
has been tested successfully with ZCM 11.3.1 on Windows and Linux. Note
|
||||
that this is a similar vulnerability to ZDI-10-078 / OSVDB-63412 which also
|
||||
has a Metasploit exploit, but it abuses a different parameter of the same
|
||||
servlet.
|
||||
This module exploits a file upload vulnerability in Novell ZENworks Configuration
|
||||
Management (ZCM, which is part of the ZENworks Suite). The vulnerability exists in
|
||||
the UploadServlet which accepts unauthenticated file uploads and does not check the
|
||||
"uid" parameter for directory traversal characters. This allows an attacker to write
|
||||
anywhere in the file system, and can be abused to deploy a WAR file in the Tomcat
|
||||
webapps directory. ZCM up to (and including) 11.3.1 is vulnerable to this attack.
|
||||
This module has been tested successfully with ZCM 11.3.1 on Windows and Linux. Note
|
||||
that this is a similar vulnerability to ZDI-10-078 / OSVDB-63412 which also has a
|
||||
Metasploit exploit, but it abuses a different parameter of the same servlet.
|
||||
},
|
||||
'Author' =>
|
||||
[
|
||||
|
@ -33,10 +31,10 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
'License' => MSF_LICENSE,
|
||||
'References' =>
|
||||
[
|
||||
[ 'CVE', '2015-0779' ],
|
||||
[ 'OSVDB', '120382' ],
|
||||
[ 'URL', 'https://raw.githubusercontent.com/pedrib/PoC/master/generic/zenworks_zcm_rce.txt' ],
|
||||
[ 'URL', 'http://seclists.org/fulldisclosure/2015/Apr/21' ]
|
||||
['CVE', '2015-0779'],
|
||||
['OSVDB', '120382'],
|
||||
['URL', 'https://raw.githubusercontent.com/pedrib/PoC/master/generic/zenworks_zcm_rce.txt'],
|
||||
['URL', 'http://seclists.org/fulldisclosure/2015/Apr/21']
|
||||
],
|
||||
'DefaultOptions' => { 'WfsDelay' => 30 },
|
||||
'Privileged' => true,
|
||||
|
|
Loading…
Reference in New Issue