Cybercriminals Using Kubernetes, Docker to Bitcoin Mine

Supposedly safe and secure Docker containers and the Kubernetes orchestration system can actually be manipulated to mine Bitcoin and other cryptocurrencies, researchers have found.

Larry Loeb, Blogger, Informationweek

March 26, 2018

3 Min Read

Cybercriminals have been running cryptocurrency attacks on hijacked machines for some time, finding it more profitable than ransomware. Now however, malware authors have found a new way to take their nefarious actions into the cloud and bypass the need for hijacking individual computers.

Reports have surfaced of attempts to run mining activities on Docker and Kubernetes systems. At the start of 2018, Sysdig researchers found that the Kubernetes instances on their honeypot servers were being attacked, with the aim of creating Docker containers that would mine Bitcoin.

Sysdig saw that the attacker created a container that mounted /etc/ from the host filesystem to /mnt/etc/ inside the container.

(Source: Pixabay)

(Source: Pixabay)

Then, by writing to files below /mnt/etc/ inside the container, they can write to files below /etc on the host. They were writing to /etc/crontab, which then downloaded a file every minute and then ran as a bash script. That script would kill any competing mining programs and install its own Bitcoin miner which used all of the host machine's available cores.

A similar attack scheme was noted by Aqua Security and explained on its blog. The effective difference between the two events was Aqua noted Monero mining occurring on net-exposed Docker containers that were not bounded by Kubernetes.

The unanswered question in all of this was how a Kubernetes instance -- such as Sysdig had running -- could be breached to allow the mining to happen.

It took Alexander Urcioli, senior security engineer at Handy HQ, to connect the dots.

Urcioli discovered that on a co-worker's machine an attacker ran commands on a Kubernetes instance without authentication, something that should not have happened. He wrote on Medium that he discovered a misconfiguration in how Kubernetes was deployed that had startling effects.

The fundamentals of network security are being redefined -- don't get left in the dark by a DDoS attack! Join us in Austin from May 14-16 at the fifth annual Big Communications Event. There's still time to register and communications service providers get in free!

Specifically, Urcioli knew the Kubernetes api-server was publicly exposed to the Internet but was protected with certificate authentication. He realized that:

"Unless you specify some flags on Kubelet, it's default mode of operation is to accept unauthenticated API requests. Keep in mind that in order for master -> node communication to work, the Kubernetes API server must be able to talk to kubelet on your nodes."

The co-worker's server had mistakenly been configured to allow the public exposing of the kubelet ports (tcp 10250, tcp 10255) to the net. That meant the attacker could access them as use the kubelet API as a backdoor into the cluster.

And now the reason the attack worked at all seems far less mysterious. The kubelet has to be locked down, or it will let almost anything get in. This has to be done explicitly, because it doesn't happen by default.

Configuration issues are being realized as a major security issue of late. Recent configuration problems in Amazon S3 containers have left private information publicly accessible, for example. Security professionals will need to pay attention to the details of configuration or pay the price in Monero.

Related posts:

— Larry Loeb has written for many of the last century's major "dead tree" computer magazines, having been, among other things, a consulting editor for BYTE magazine and senior editor for the launch of WebWeek.

Read more about:

Security Now

About the Author(s)

Larry Loeb

Blogger, Informationweek

Larry Loeb has written for many of the last century's major "dead tree" computer magazines, having been, among other things, a consulting editor for BYTE magazine and senior editor for the launch of WebWeek. He has written a book on the Secure Electronic Transaction Internet protocol. His latest book has the commercially obligatory title of Hack Proofing XML. He's been online since uucp "bang" addressing (where the world existed relative to !decvax), serving as editor of the Macintosh Exchange on BIX and the VARBusiness Exchange. His first Mac had 128 KB of memory, which was a big step up from his first 1130, which had 4 KB, as did his first 1401. You can e-mail him at [email protected].

Keep up with the latest cybersecurity threats, newly discovered vulnerabilities, data breach information, and emerging trends. Delivered daily or weekly right to your email inbox.

You May Also Like


More Insights