Lucene search
K

Kemp Load Master 7.1-16 CSRF / XSS / DoS / Code Execution

🗓️ 03 Apr 2015 00:00:00Reported by Roberto Suggi LiveraniType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 31 Views

Kemp Load Master 7.1-16 Vulnerabilities and Fixe

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Kemp Load Master 7.1.16 - Multiple Vulnerabilities
2 Apr 201500:00
zdt
CNVD
Kemp Virtual LoadMaster seterrmsg() Arbitrary Code Execution Vulnerability
14 Apr 201500:00
cnvd
CVE
CVE-2014-5287
8 Jan 202016:36
cve
CVE
CVE-2014-5288
7 Feb 202016:46
cve
Cvelist
CVE-2014-5287
8 Jan 202016:36
cvelist
Cvelist
CVE-2014-5288
7 Feb 202016:46
cvelist
Exploit DB
Kemp Load Master 7.1.16 - Multiple Vulnerabilities
2 Apr 201500:00
exploitdb
EUVD
EUVD-2014-5179
7 Oct 202500:30
euvd
exploitpack
Kemp Load Master 7.1.16 - Multiple Vulnerabilities
2 Apr 201500:00
exploitpack
NVD
CVE-2014-5287
8 Jan 202017:15
nvd
Rows per page
`# Exploit Title: Kemp Load Master - Multiple Vulnerabilities (RCE, CSRF, XSS, DoS)  
# Date: 01 April 2015  
# Author: Roberto Suggi Liverani  
# Software Link: http://kemptechnologies.com/load-balancer/  
# Version: 7.1.16 and previous versions  
# Tested on: Kemp Load Master 7.1-16  
# CVE : CVE-2014-5287/5288  
  
Link: http://blog.malerisch.net/2015/04/playing-with-kemp-load-master.html  
  
Kemp virtual load master is a virtual load-balancer appliance which comes with a web administrative interface. I had a chance to test it and this blog post summarises some of the most interesting vulnerabilities I have discovered and which have not been published yet. For those of you who want to try it as well, you can get a free trial version here: http://kemptechnologies.com/server-load-balancing-appliances/virtual-loadbalancer/vlm-download  
  
By default, Kemp web administrative interface is protected by Basic authentication, so the vulnerabilities discussed in the post below can either be exploited attacking an authenticated user via CSRF or XSS based attacks.  
  
The following vulnerabilities were discovered when looking at Kemp Load Master v.7.1-16 and some of them should be fixed in the latest version (7.1-20b or later).  
  
Change logs of the fixed issues can be found at the following page:  
  
"PD-2183 Functions have been added to sanitize input in the WUI in order to resolve some security issues – fix for CVE-2014-5287 and CVE-2014-5288".  
  
Remote Code Execution - status: fixed in 7.1.20b (reported in June 2014) - CVE-2014-5287/5288  
  
An interesting remote code execution vector can be found through the attack payload below:  
  
http://x.x.x.x/progs/fwaccess/add/1|command  
  
The web application functionality is based on multiple bash scripts contained in the /usr/wui/progs folder. The application is using CGI so that the scripts can handle HTTP requests.  
  
  
We notice that if the result of the command on line 285 is not positive (check on 286), then seterrmsg function is called.  
  
  
On line 318 we see a dangerous "eval" against our parameters. By simply attempting multiple characters, the seterrmsg function is invoked and returns plenty of interesting information:  
  
http://x.x.x.x/progs/fwaccess/add/1'ls  
  
Response:  
  
HTTP/1.1 200 OK  
Date: Sat, 27 Dec 2014 23:25:55 GMT  
Server: mini-http/1.0 (unix)  
Connection: close  
Content-Type: text/html  
/usr/wui/progs/util.sh: eval: line 318: unexpected EOF while looking for matching `''  
/usr/wui/progs/util.sh: eval: line 319: syntax error: unexpected end of file  
  
line 318 contains an eval against the $@ (which contains our arguments). The arguments are passed via the fwaccess page, where IFS is set with a slash "/" separator.  
  
By attempting the request below, it is possible to achieve code execution:  
  
http://x.x.x.x/progs/fwaccess/add/1|ls  
  
Response:  
  
  
Line 120 and line 190 reports an integer expression expected error, as our argument is "1|ls" is obviously no longer an integer. However, the command execution works fine, as we are redirecting output through the pipe character and to "ls" command.  
  
The application is flawed in so many other points, also, via HTTP POST requests  
  
  
Other injection points that were found:  
  
Page: /progs/geoctrl/doadd  
Method: POST  
Parameter: fqdn  
  
Page: /progs/networks/hostname  
Method: POST  
Parameter: host  
  
Page: /progs/networks/servadd  
Method: POST  
Parameter: addr  
  
Page: /progs/useradmin/setopts  
Method: POST  
Parameter: xuser  
  
So how can we exploit all this goodness?  
  
CSRF (Cross Site Request Forgery) - status: not fixed - reported in June 2014  
  
We can use another vulnerability, such as CSRF - most of the pages of the administrative are vulnerable to this attack, so even though a user is authenticated via Basic authentication, the forged request will force the browser to pass the credentials within the HTTP request.  
  
Interestingly enough, there are some kind of protections against CSRF for critical functions, such as factory reset, shutdown and reset. However, they are flawed as well, as the "magic" token matches with the unix epoch timestamp, so it is predictable and can be passed within the request.  
  
  
Reflected and Stored XSS - status: partially fixed - reported on June 2014  
  
Another way to attack users is via XSS - in this case, we have plenty of options, as both reflected and stored XSS are there. For instance, a user might want to CSRF -> Store XSS -> BeEF just to achieve persistence.  
  
Reflected XSS was found on this point:  
  
Page: /progs/useradmin/setopts  
Method: POST  
Parameter: xuser  
  
  
Stored XSS was found on the following points:  
  
Page: /progs/geoctrl/doadd  
Method: POST  
Parameter: fqdn  
  
  
A further injection points:  
  
Page: /progs/fwaccess/add/0  
Method: POST  
Parameter: comment  
  
Page: /progs/doconfig/setmotd  
Method: POST  
Parameter:  
  
BeEF Module  
  
As part of this research, I have developed a BeEF module to take advantage of chaining these vulnerabilities together. It is always sweet to use a XSS as a starting point to perform code execution against an appliance.  
  
The github pull request for the module can be found here: https://github.com/beefproject/beef/pull/1104/files  
  
  
For this module, I wanted to use the beef.net.forge_request() function, using a POST method, required to exploit the above RCE vector attacks. However, POST method was not usable at moment of writing this module and @antisnatchor was very quick to fix it in this case. So if you want to try it, ensure you have the latest version of BeEF installed.  
  
  
Extra - bonus  
  
Denial of Service - status: unknown - reported on June 2014  
  
It appears the thc-ssl-dos tool can bring down the Kemp Load Master administrative interface, which is served over SSL. The same goes if a balanced service is using SSL via Kemp Load Master.  
  
Shell-shock - status: unknown - reported in 2015  
  
Obviously, the application is not immune from the infamous shell-shock vulnerability. This was found by my friend Paul Heneghan and then by a user complaining on the vendor's blog (the comment has been removed shortly after).  
  
For those of you who are more curios, the shell-shock vulnerability works perfectly via the User-Agent header, also in version 7.1-18 and possibly on version 7.1-20 as well.  
  
  
  
Funny enough, Kemp provides Web Application Firewall protection, but I wonder how they can "prevent" the OWASP Top Ten (as they claim here), if their main product is affected by so many critical vulnerabilities ;-)  
  
If you are keen for an extra-extra bonus, keep reading...  
  
Extra - extra bonus:  
  
No license, no web authentication  
  
  
However, most of the underlying functionality is still available and "attackable" without need of basic authentication. You can invalidate the license with a CSRF setting time far in the future ;-)  
  
`

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

03 Apr 2015 00:00Current
0.3Low risk
Vulners AI Score0.3
EPSS0.13883
31