mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 12:43:23 +00:00
71 lines
5.6 KiB
Markdown
71 lines
5.6 KiB
Markdown
# House of Lore | Small bin Attack
|
||
|
||
<details>
|
||
|
||
<summary><strong>ゼロからヒーローまでAWSハッキングを学ぶ</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE(HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
||
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**をフォローする🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **ハッキングテクニックを共有するために** [**HackTricks**](https://github.com/carlospolop/hacktricks)と[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)のGitHubリポジトリにPRを提出する。
|
||
|
||
</details>
|
||
|
||
## 基本情報
|
||
|
||
### コード
|
||
|
||
* [https://ctf-wiki.mahaloz.re/pwn/linux/glibc-heap/house\_of\_lore/](https://ctf-wiki.mahaloz.re/pwn/linux/glibc-heap/house\_of\_lore/)から確認してください
|
||
* これは機能しません
|
||
* または:[https://github.com/shellphish/how2heap/blob/master/glibc\_2.39/house\_of\_lore.c](https://github.com/shellphish/how2heap/blob/master/glibc\_2.39/house\_of\_lore.c)
|
||
* これはいくつかのチェックをバイパスしようとしてエラーが発生するため、機能しません:`malloc(): unaligned tcache chunk detected`
|
||
* この例はまだ機能しています**:** [**https://guyinatuxedo.github.io/40-house\_of\_lore/house\_lore\_exp/index.html**](https://guyinatuxedo.github.io/40-house\_of\_lore/house\_lore\_exp/index.html) 
|
||
|
||
### ゴール
|
||
|
||
* **小さなビンに偽の小さなチャンクを挿入して、それを割り当てることができるようにする**。\
|
||
追加された小さなチャンクは攻撃者が作成する偽のものであり、任意の位置に偽のものではありません。
|
||
|
||
### 必要条件
|
||
|
||
* 2つの偽のチャンクを作成し、それらと正当なチャンクをリンクして小さなビンにリンクする:
|
||
* `fake0.bk` -> `fake1`
|
||
* `fake1.fd` -> `fake0`
|
||
* `fake0.fd` -> `legit`(他の脆弱性を介して解放された小さなビンのチャンク内のポインタを変更する必要があります)
|
||
* `legit.bk` -> `fake0`
|
||
|
||
その後、`fake0`を割り当てることができます。
|
||
|
||
### 攻撃
|
||
|
||
* 小さなチャンク(`legit`)が割り当てられ、次にトップチャンクと統合されるのを防ぐために別のチャンクが割り当てられます。その後、`legit`が解放され(未整列リストに移動)、より大きなチャンクが割り当てられ、**`legit`が小さなビンに移動します。**
|
||
* 攻撃者はいくつかの偽の小さなチャンクを生成し、サニティチェックをバイパスするために必要なリンクを作成します:
|
||
* `fake0.bk` -> `fake1`
|
||
* `fake1.fd` -> `fake0`
|
||
* `fake0.fd` -> `legit`(他の脆弱性を介して解放された小さなビンのチャンク内のポインタを変更する必要があります)
|
||
* `legit.bk` -> `fake0`
|
||
* 小さなチャンクが割り当てられ、`legit`を取得し、**`fake0`**を小さなビンのトップリストにします
|
||
* 別の小さなチャンクが割り当てられ、チャンクとして`fake0`を取得し、その内部のポインタを読み取り/書き込みする可能性があります。
|
||
|
||
## 参考文献
|
||
|
||
* [https://ctf-wiki.mahaloz.re/pwn/linux/glibc-heap/house\_of\_lore/](https://ctf-wiki.mahaloz.re/pwn/linux/glibc-heap/house\_of\_lore/)
|
||
* [https://heap-exploitation.dhavalkapil.com/attacks/house\_of\_lore](https://heap-exploitation.dhavalkapil.com/attacks/house\_of\_lore)
|
||
* [https://guyinatuxedo.github.io/40-house\_of\_lore/house\_lore\_exp/index.html](https://guyinatuxedo.github.io/40-house\_of\_lore/house\_lore\_exp/index.html)
|
||
|
||
<details>
|
||
|
||
<summary><strong>ゼロからヒーローまでAWSハッキングを学ぶ</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE(HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
||
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**をフォローする🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **ハッキングテクニックを共有するために** [**HackTricks**](https://github.com/carlospolop/hacktricks)と[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)のGitHubリポジトリにPRを提出する。
|
||
|
||
</details>
|