Blog

Release the Hydra: Umbra Loader With Tor Support

Posted: 17th March 2016
By: FILIP REESALU
 Release the Hydra: Umbra Loader With Tor Support

Analysis Summary

  • The Hydra open source Tor-based botnet (an Umbra Loader variant) recently received an update.
  • It has the potential to serve as a blueprint for new malware written in Delphi, specifically around ease of Tor integration.
  • Malicious network traffic-based detection becomes more difficult as additional families piggyback on the Tor network.

Introduction

In February 2016, a Recorded Future (RF) alert drew our attention to a Hydra update.

umbra-loader-tor-support-1.png

The author — _ crazyskate66_ — released an update to a rudimentary open source botnet (malware that allows a malicious actor to control a group of connected computers) based on the popular Umbra Loader utilizing Tor for network stealth (not to be confused with the older IRC-based RAT with the same name or the brute-force password cracker THC Hydra).

umbra-loader-tor-support-2.png

Release Post

While other more advanced botnets have had their source code leaked (notable examples include Zeus, Carberp, and SpyEye) this is an interesting case of a botnet variation that has been developed publicly from December 2014 through February 2016 offering other Umbra Loader users the option of leveraging Tor for communication.

umbra-loader-tor-support-3.jpg

Command and Control UI

umbra-loader-tor-support-4.png

Included Builder

Beyond the initial postings to ic0de[.]org, older versions of the code were advertised on additional forums.

umbra-loader-tor-support-5.png

Advertising on a Russian Forum

Technical Details

As the Bot code executes, it sets up a hidden Tor proxy on the victim machine and subsequently uses the local proxy to route all command and control (C&C) communication. The administration panel is locked to one configurable user agent, and all bots are also required to use a specific user agent in order to communicate with the C&C.

The Tor binary is either included with the malware or can be downloaded during install, and gets copied into _ %LocalAppData%<configured folder=""><configured filename="">_ .

To receive commands from the C&C server, the bot generates an identifier string that the server uses:

umbra-loader-tor-support-6.png

The identifier is encrypted with AES and the result is used as a parameter in a _ HTTP GET_ request to the C&C server:

umbra-loader-tor-support-7.png

untParser.pas

Where _ tmp_ is the AES encoded identifier and the default values would make the URL:

_ http://00000000000000.onion/Public/gate.php?thread=<encrypted identifier>_

The response from the C&C server contains instructions (commands followed by arguments) that the client decrypts (using the same key and IV) and interprets.

Available Commands

DownloadEx Download an executable file and run it.
Update Updates the client binary.
InstallPlugin Download a plugin and install it.
ReloadPlugins Resets all the plugins.
UnloadPlugins Stop all plugins.
UnloadPlugin Stop a specific plugin.
LoadOnce Load a plugin if it’s not already running.
UninstallPlugin Delete a plugin.
Uninstall Delete the client.

Hydra comes with one bundled plugin (_ ChromeStealer_ ) which extracts and decrypts any passwords saved by the Chrome password manager and communicates them back to the C&C server by calling, once for each credential found, where _ a[i]_ represents one credential on the form _ url|username|password_ :

umbra-loader-tor-support-8.png

ChromeStealer.dpr

However, this functionality appears broken since the author seems to have confused the delimiters used for the steal parameter in different files. Additionally, the author forgot to encrypt the _ ChromeStealer_ communication with AES (although it does use the Tor proxy) and ignored validation of the identifier, allowing anyone with the correct user agent to flood the credential database.

Despite these shortcomings, this development effort illustrates how easily malware written in Delphi could be modified to utilize the Tor network. Obviously other malware developers may find value in this update as a template for similar work.

Versioning and Author

All releases seem to have originated at ic0de[.]org, from user _ crazyskate66_ , and the public release schedule is as follows:

Version Date Link
Initial December 2014 http://www.ic0de[.]org/archive/index.php/t-12533.html
1.0.2 November 2015 http://www.ic0de[.]org/archive/index.php/t-12672.html
1.0.3 February 2016 http://www.ic0de[.]org/archive/index.php/t-12695.html

The author joined ic0de in September 2011 and was active on hackforums[.]net in 2010.

umbra-loader-tor-support-9.png

Hackforums[.]net Activity for crazyskate66

In the latest changelog _ crazyskate66_ states:

umbra-loader-tor-support-10.png

Conclusion

Malware utilizing Tor isn’t novel, one notable historical example: in 2013, MEVADE/SEFNIT increased the number of Tor “users” from one million to five million within a couple of weeks.

Compared to the open source ZIB-Trojan (IRC-based botnet using Tor with a slew of built-in functionality) Hydra is lacking in features and seems like a rough draft of how one could route Umbra Loader traffic through Tor, but it does have the advantage of being based on Umbra Loader/Delphi — meaning there’s the option of reusing leaked/purchased code.

Detecting and filtering Tor traffic is difficult by design but there are a few different methods available for defenders:

  • Maintaining an updated blacklist of known Tor relays (one that refreshes every 30 minutes is available here).

  • Using a Web application firewall (WAF) that acts as a trusted man in the middle which can reject any requests using untrusted certificates (Blue Coat’s ProxySG is one such firewall with Tor-blocking).

Related