Aqua Blog

Threat Alert: Market-First Container Image Built to Attack Kubernetes Clusters

Threat Alert: Market-First Container Image Built to Attack Kubernetes Clusters

Aqua’s Team Nautilus has uncovered a container image that, for the first time, allows bad actors to find and exploit vulnerabilities in Kubernetes clusters. The attackers propagate this malware through a Docker Hub lookalike account intended to dupe developers into downloading malicious images. To the best of our knowledge, this is the first known case where cyber attackers use this method to exploit cloud native stacks by specifically targeting weaknesses in Kubernetes clusters.

Using Aqua’s Dynamic Threat Analysis (DTA) scanner, we found 11 malicious container images in a Docker Hub account (a complete list of images and IoCs provided below). We believe that attackers created this account in order to masquerade as legitimate software providers, and have unsuspecting developers download and use it as they would normally.

Anything but normal: How these malicious container images strike

The Container image entrypoint is set to execute DEEPCE, an Offensive Security Tool (OST) designed to attempt escaping the containerized environment and taking a hold of the host, which means this container image is designed to run in the target’s environment. The image also contains other OSTs that allow the attacker to conduct further malicious attacks against Kubernetes clusters, such as detecting vulnerabilities in API server, pods, kublet API, Docker API, Docker.sock, etc.

Under closer inspection, we found TeamTNT, again

Initially, our researchers detected a suspicious Docker Hub account – portaienr. Based on experience, our hunch was that TeamTNT created this account in order to masquerade as a legitimate Docker Hub account and software (Portainer). The account uses typosquatting, which relies on common mistakes (e.g., typos) by users when keying in a website address. So, anyone who may misspell portainer as portanier is sent to the attacker’s account and duped into pulling malicious images.

After closely examining the artifacts, we concluded that the account did belong to TeamTNT. We based our conclusion on several images that download malicious components from TeamTNT’s C2 server (teamtnt[.]red). Additionally, most images were using binaries commonly applied by TeamTNT in previous campaigns. For instance, bioset (MD5= 283e0172063d1a23c20c6bca1ed0d2bb) serves as a bind shell that allows the attacker to connect to the host after the malware deployed to the container, and ziggy (MD5= 03647c6ae05aa8e4475d8ade50016385) — better known as Tsunami Malware, which is TeamTNT’s weapon of choice.

To bolster our assertions, we decided to conduct a short OSINT investigation (a multi-method approach) in order to search for other attacks coming from this Docker Hub account.

OSINT investigation revealed other victims

We noticed a post on Reddit from someone who claimed that his Virtual Private Server (PVS) was recently attacked by TeamTNT. He said that his VPS provider reported that his hosting company had complained that malicious traffic was originating from his server’s IP address. Following a quick inspection, he discovered a new user (Hilde) and SSH keys on his machine. In addition, he found a malicious shell file (Docker MassAutoInfect V1.2 by (c) 2020 by hilde[@]TeamTNT[.]red), which correlates with other TeamTNT malicious scripts.

This victim further claimed that he was using Portainer and that he might have “made some mistakes” with Docker API or Portainer configurations. He also claimed that he had exposed, for no reason, the docker/sock for many containers. Founded on the Reddit user’s details, we learned that the VPS freely allowed inbound traffic to all ports, and port 2375 in particular. Based on the evidence provided by the victim, we surmised that by using Masscan or Shodan engine, TeamTNT’s crypto worm automatically detected that port 2375 was open to the world and deployed and ran the container image “portaienr/allink:latest” on the VPS.

Infected by TeamTNT

Infected by teamTNT

Next, we focused our attention on one image in particular (portaienr/bobedpei:latest), since it was packed with self-crafted and open-source tools that were designed to find and exploit vulnerabilities in Kubernetes and Linux Container (LXC) environments. Further analysis showed that this image contained interesting binaries and scripts designed to enable an orchestrated attack against Kubernetes clusters. Based on the entrypoint commands and the scripts embedded in the image, only some of the tools would be used during an attack. We believe the attackers adds scripts as needed (downloaded from a remote source) to attack specific targets. This is also a known technique by TeamTNT when they attack in the wild.

Analyzing the container image bobedpei

Let’s start by breaking down this image into its components, based on the artifacts that were detected by DTA:

Scanning for Kubernetes vulnerabilities

The image contains a binary file and downloads a Python package designed to detect vulnerabilities in Kubernetes clusters.

  • Kube-hunter Python package is Aqua’s open-source pen-testing tool. That’s right, our own tool designed to help legitimate security folks hunt for security weaknesses in their Kubernetes clusters has been repurposed for malicious purposes by cyber attackers.
  • Peirates is another Kubernetes penetration tool that enables an attacker to escalate privilege and pivot through a Kubernetes cluster. It automates known techniques to steal and collect service accounts, obtain further code execution, and gain control of the cluster. This tool is found in the binary pei (MD5= 018d88b8203bdea0fe4dc5b4baa930c4).

Attacking the Containers

The image includes a couple of tools that are designed to detect and exploit vulnerabilities in containers.

  • Bob (Break Out the Box) is used to exploit common container vulnerabilities, post-exploitation techniques, identify Kubernetes service account secrets and attempt to use them, identify metadata services endpoints, find and identify UNIX domain sockets, identify UNIX domain sockets which support HTTP, etc. This tool is found in the binary bob (MD5= 342ac1027703123bfa9099bb18335871).
  • DEEPCE (Docker Enumeration, Escalation of Privileges and Container Escapes) is another tool which can collect data by performing enumeration on the environment (e.g., container name and ID, IP addresses and DNS server, docker version, mounts, passwords and sensitive files, environment variables, other containers on the network). This tool is also set to perform privilege escalation and Docker escape. The image also contains two scripts designed to execute deepce.sh The script docker.sh is designed to run deepce.sh on Docker containers, while lxc.sh is designed to execute deepce.sh on Linux containers.
  • ed is used to identify and exploit accessible UNIX domain Sockets and Docker.sock in particular. Once detected, ed attempts to exploit the socket to escape the container. ed is a binary (MD5= fd3c237e7da41539eb0506810b7ec238).

Network manipulation tools:

The image contains legitimate network manipulation tools that can be abused by the attacker in order to exploit vulnerable network connections.

  • Scapy is a packet manipulation tool for computer networks, that can forge or decode packets, send them on the wire, capture them, and match requests and replies. It can also handle tasks like scanning, tracerouting, probing, unit tests, attacks, and network discovery.
  • UTscapy is also imported to allow adversaries to launch scapy campaigns. We speculate these tools are present to enable attackers to conduct an efficient attack within a dense environment of containers, namely Kubernetes.

A possible orchestrated attack against Kubernetes cluster

Although we have not identified a specific script that executes the attack, based on the tools stored in this container image, we can infer that TeamTNT can download scripts from remote sources and modify their attack according to the target. Based on the tools in the image, we can suggest several possible attack vectors (from inside and outside of the cluster) that can be performed on a Kubernetes cluster as it appears in the figure below:

Kubernetes vulnerability security threat

Initial access

The tools in this container image (bobedpei) can detect possible initial access points:

  • Misconfigured ports that enable anybody to write commands to the APIs. These tools scan default ports to identify any misconfigurations. For instance, open to the world Docker API running on port 2375, or misconfigured etcd API on port 2379.
  • Misconfigured K8s Dashboard enables unauthenticated login.
  • Misconfigured K8s API Server enables unauthenticated login.
  • Misconfigured etcd database enables anyone to make actions in the database. For instance, allowing Read and Write to etcd DB.
  • In all Kubernetes versions before v1.10.11, v1.11.5, and v1.12.3, authentication API-Server can be exploited based on CVE-2018-1002105.

Discovery

In addition to allowing initial access, this container image (bobedpei) enables extensive discovery possibilities:

  • K8s Dashboard
  • K8s API Server
  • K8s etcd
  • K8s pods
  • Docker Socket
  • Collecting information about container files, network, and interfaces, which can be further exploited for credential theft
  • Network Scanning
  • Provides Metadata (i.e., AWS, GCP)

Privileged escalation and lateral movement

Once the Kubernetes cluster and initial access are discovered, several tools allow further exploitation of a Kubernetes cluster:

  • In case of SA permissions running on a pod, an attacker can exploit K8s API Server to:
    • Increase permissions by obtaining service account tokens
    • Running code on the pod
    • Using Kubectl exec for reverse shell
  • An attacker can perform DNS or ARP Spoofing to hijack another pod’s networks connections
  • An attacker can exploit /var/log host mount, so the pod can traverse read files on the host machine
  • In older Kubernetes versions, stealing service account tokens by abusing open Kubelet API
  • Stealing IAM credentials by scraping Provider Metadata (AWS, GCP)
  • In GCS environments, an attacker can pull service account (K8s) tokens from bucket storage
  • Using RunCPawn vulnerability (CVE-2019-5736) an attacker can attempt to perform a container escape
  • An attacker can exploit a privileged container to create a new root user on the host operating system
  • An attacker can escalate to root via membership to the docker group on a host and run a custom payload

Impact

In all Kubernetes versions older than v1.11.8, v1.12.6, and v1.13.4, an attacker can launch a Denial of Service attack against the API-Service by exploiting CVE-2019-1002100, if the user is allowed to make API patch requests.

Protecting your K8s cluster

We’ve uncovered how TeamTNT has expanded its attacks against cloud native stacks using a first-ever approach. By using a container image packed with tools to detect and exploit vulnerabilities in a Kubernetes cluster, and a Docker Hub account to host this image, it’s able to masquerade as legitimate Kubernetes software and trick innocent users into downloading malicious container images.

And this isn’t a theoretical exercise, nor is it an attack against an inconsequential honeypot. We have evidence of a real-life attack by this Docker Hub account. We also confirmed an actual attack in the wild by TeamTNT after they exploited a misconfigured Docker daemon.

To protect your K8s clusters, we recommend being very careful about the images you download from public registries — and make sure they are actually the images you wanted, also:

  1. Scan images for Kubernetes vulnerabilities, and if you frequently download images from public sources, use a tool like DTA to find hidden malware.
  2. Be sure to update your Kubernetes version — previous versions would have more known vulnerabilities.
  3. Harden your clusters using kube-bench, kube-hunter, and Aqua KSPM.
  4. Monitor your running workloads and resource use for suspicious behaviors and patterns (Aqua’s runtime protection does that automatically with features like Drift Prevention.

If you’d like to learn more security steps to defend your Kubernetes clusters, go to Holistic Kubernetes Security.

Indications of Compromise (IOCs)

Container Image
portaienr/tntscanminion:latest
portaienr/jadocker:latest
portaienr/du:latest
portaienr/portaienr:latest
portaienr/p0rtainer:latest
portaienr/simple:latest

portaienr/docrunker2:latest
portaienr/drwho:latest
portaienr/sbin:latest
portaienr/allink:latest
portaienr/bobedpei:latest
Binaries
File in image 'portaienr/tntscanminion:latest ': '/usr/sbin/docker-update (MD5= 8ffdba0c9708f153237aabb7d386d083 )
File in image 'portaienr/tntscanminion:latest ': '/bin.87964066 (MD5= 29467ddb037991baf288027fa4bebf30 )
File in image 'portaienr/jadocker:latest ': '/root/docker/docker (MD5= c6d849e8aaae006860d7dcf42aebd97f )
File in image 'portaienr/jadocker:latest ': '/root/docker/dockerd (MD5= 8a96af0089087248e25672a43e4fe6eb )
File in image 'portaienr/jadocker:latest ': '/root/ziggy (MD5= 03647c6ae05aa8e4475d8ade50016385 )
File in image 'portaienr/jadocker:latest ': '/root/dockerd (MD5= 34fc4ebf3225ba6181a4f2c2424205b0 )
File in image 'portaienr/jadocker:latest ': '/root/tshd (MD5= 43dbe21ebed2fd6b297719539ab3d9fa )
File in image 'portaienr/du:latest ': '/root/docker-ud (MD5= 8ffdba0c9708f153237aabb7d386d083 )
File in image 'portaienr/du:latest ': '/bin.82710345 (MD5= dc0d4d6e72dc4321f61ed17798c796dd )

File in image 'portaienr/portaienr:latest ': '/usr/sbin/bioset (MD5= 283e0172063d1a23c20c6bca1ed0d2bb )

File in image 'portaienr/portaienr:latest ': '/usr/sbin/kube (MD5= 4fd3f722acda1e814ab3a39df1a3069c )
File in image 'portaienr/portaienr:latest ': '/usr/sbin/tshd (MD5= c68f0c621ab25f1e42e2c8279822bb62 )

File in image 'portaienr/portaienr:latest ': '/usr/sbin/cfg80211 (MD5= 567b3c1b89d1f882eb46eadcf561160f )
File in image 'portaienr/portaienr:latest ': '/usr/sbin/xmrigMiner  (MD5= d6fe84f7228f1c2e9347c3867e37cc87 )

File in image 'portaienr/portaienr:latest ': '/usr/sbin/xmrigDaemon (MD5= 567b3c1b89d1f882eb46eadcf561160f )
File in image 'portaienr/p0rtainer:latest ': '/bin/containerd (MD5= c31cf00492333f40ddbafa4e4409ec3c )
File in image 'portaienr/simple:latest ': '/usr/bin/xmrig (MD5= 5888e17810aa1846c0c013804e181624 )
File in image 'portaienr/drwho:latest ': '/root/i686 (MD5= 8d293c1c54ea0ab4cbe151e1defc3a42 )
File in image 'portaienr/drwho:latest ': '/root/x86_64 (MD5= 8ffdba0c9708f153237aabb7d386d083 )
File in image 'portaienr/drwho:latest ': '/root/armv7l (MD5= a8c61c0749b89b89ab17ec45a7fc925d )
File in image 'portaienr/sbin:latest ': '/bin/sbin (MD5= f42be0d5a0da02a4d6bfc95b62d1838e )
Domains
TeamTNT C2 server in image 'portaienr/tntscanminion:latest ': teamtnt[.]red
TeamTNT C2 server in image 'portaienr/jadocker:latest ': kaiserfranz[.]cc

TeamTNT C2 server in image 'portaienr/docrunker2:latest ': teamtnt[.]red
Shell files
Shell file in image 'portaienr/docrunker2:latest ': '/setup_moneroocean_miner.sh '
TAR files
Tar file in image 'portaienr/jadocker:latest ': '/root/stock.tar.gz ' (MD5= 3e3aaae67930c42ec51d4b6194b9c000 )
Tar file in image 'portaienr/jadocker:latest ': '/root/mod.tar.gz ' (MD5= 5232b207d45298f847e123c3b360e567 )
Tar file in image 'portaienr/drwho:latest ': '/root/xmr.tar.gz ' (MD5= 62df698e88504c8e1c931df0ba0aa757 )
Assaf Morag
Assaf is a Lead Data Analyst at Aqua Nautilus research team, he focuses on supporting the data needs of the team, obtaining threat intelligence and helping Aqua and the industry stay at the forefront of new threats and methodologies for protection. His work has been published in leading info security publications and journals across the globe, and most recently he contributed to the new MITRE ATT&CK Container Framework.
Gal Singer
Gal is a Security Researcher at Aqua. As part of the Aqua research team, his work focuses on researching vulnerabilities in Kubernetes and Networking around the cloud native world. When not at work, he likes going to music concerts and spending time at the beach with his friends.