Loading...
Blogs & Stories

SpiderLabs Blog

Attracting more than a half-million annual readers, this is the security community's go-to destination for technical breakdowns of the latest threats, critical vulnerability disclosures and cutting-edge research.

[Honeypot Alert] FHS Null Byte Attack (CVE-2014-6287) Attempts to Install DDoS Malware (Iptablex)

Our web honeypots picked up some exploit attempts for CVE-2014-6287 which is a command execution vulnerability in the Rejetto HTTP File Server (aks HFS or HttpFileServer) product. Here is PoC vulnerability details from PacketStorm:

Screen Shot 2015-02-25 at 8.51.06 AM

Honeypot Attack Example

One of our web honeypot systems located in Berlin, Germany received an attack from a system in China:

Screen Shot 2015-02-25 at 9.48.25 AM

Here is a screenshot from the ModSecurity audit log entry for the attack:

Screen Shot 2015-02-25 at 9.09.01 AM

The yellow highlighted section shows the Null Byte character being used to initiate the Windows OS command execution payload. The blue highlighted section is the payload of the attack which is using Microsoft VBScripting.

VBScript Exploit Payload

Here is what the VBScript code looks like once it is urldecoded and beautified for readability:

Screen Shot 2015-02-25 at 9.05.24 AM

Here is a breakdown of what this attack script is doing:

  • The command uses "cmd.exe" to create a VBScript called "22222.vbs".
  • Script uses XML HTTP Requests (XHR) to try and connect to two different malware repository hosts (123.108.109.100 and 178.33.196.164) on ports 53 (DNS), 80 (HTTP) and 443 (HTTPS). As of this morning, only the 178.33.196.164 host was online. This is a server located in Paris, France.

Screen Shot 2015-02-25 at 9.57.59 AM

  • The XHR connections try and download a file called "getsetup.exe" and save it locally as a file called "ko.exe".

Screen Shot 2015-02-25 at 9.23.10 AM

  • The script then tries to execute the "ko.exe" script.
  • Finally the script deletes itself.

getsetup.exe Analysis

I checked the file hash and found that there are details from a previous upload on the Malwr site:

Screen Shot 2015-02-25 at 9.25.26 AM
Fortunately, AV detection rates seem pretty good:

Screen Shot 2015-02-25 at 9.40.41 AM

In digging a bit deeper, it appears that this program is also known as "Iptables/Iptablex" and is a DDoS botnet tool as outlined in this presentation from Avast:

Screen Shot 2015-02-25 at 9.43.02 AM

Mitigations

Update Software

The first step in preventing these types of exploits is to ensure that your software is up to date on patches. You can download the HFS software updates with the patches here.

Scan for Vulnerabilities

If you want to check your systems to see if your FHS version is vulnerable, you can also use this Metasploit module.

Use a Web Application Firewall (WAF)

As we showed from the honeypot alert, using a WAF can help to prevent 0-day exploits such as this one by generically identifying attack payloads that have:

  • Null Bytes
  • OS Command Injections

Verify Network Firewall Egress Rules

The full attack chain sequence will work only if exploited web servers are able to initiate OUTBOUND connections to malware repository sites. Organizations should implement egress firewall rules that prevent web servers from initiating outbound connections (except perhaps to authorized locations).