2024-06-13 15:11:42 +00:00
# House of Lore | Small bin Attack
2024-05-14 11:15:17 +00:00
< 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をサポートする他の方法:
2024-06-13 15:11:42 +00:00
* **HackTricksで企業を宣伝したい**または**HackTricksをPDFでダウンロードしたい場合**は[**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)をチェックしてください!
2024-05-14 11:15:17 +00:00
* [**公式PEASS& HackTricksグッズ** ](https://peass.creator-spring.com )を入手する
2024-06-13 15:11:42 +00:00
* [**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を提出する。
2024-05-14 11:15:17 +00:00
< / 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/ )から確認してください
2024-06-13 15:11:42 +00:00
* これは機能しません
2024-05-14 11:15:17 +00:00
* または:[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)
2024-06-13 15:11:42 +00:00
* これはいくつかのチェックをバイパスしようとしてエラーが発生するため、機能しません:`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 ) 
2024-05-14 11:15:17 +00:00
### ゴール
2024-06-13 15:11:42 +00:00
* **小さなビンに偽の小さなチャンクを挿入して、それを割り当てることができるようにする**。\
追加された小さなチャンクは攻撃者が作成する偽のものであり、任意の位置に偽のものではありません。
2024-05-14 11:15:17 +00:00
### 必要条件
2024-06-13 15:11:42 +00:00
* 2つの偽のチャンクを作成し、それらと正当なチャンクをリンクして小さなビンにリンクする:
* `fake0.bk` -> `fake1`
* `fake1.fd` -> `fake0`
* `fake0.fd` -> `legit` (他の脆弱性を介して解放された小さなビンのチャンク内のポインタを変更する必要があります)
* `legit.bk` -> `fake0`
その後、`fake0`を割り当てることができます。
2024-05-14 11:15:17 +00:00
### 攻撃
2024-06-13 15:11:42 +00:00
* 小さなチャンク(`legit`)が割り当てられ、次にトップチャンクと統合されるのを防ぐために別のチャンクが割り当てられます。その後、`legit`が解放され(未整列リストに移動)、より大きなチャンクが割り当てられ、**`legit`が小さなビンに移動します。**
* 攻撃者はいくつかの偽の小さなチャンクを生成し、サニティチェックをバイパスするために必要なリンクを作成します:
* `fake0.bk` -> `fake1`
* `fake1.fd` -> `fake0`
* `fake0.fd` -> `legit` (他の脆弱性を介して解放された小さなビンのチャンク内のポインタを変更する必要があります)
* `legit.bk` -> `fake0`
* 小さなチャンクが割り当てられ、`legit`を取得し、**`fake0`**を小さなビンのトップリストにします
* 別の小さなチャンクが割り当てられ、チャンクとして`fake0`を取得し、その内部のポインタを読み取り/書き込みする可能性があります。
2024-05-14 11:15:17 +00:00
## 参考文献
* [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 )
2024-06-13 15:11:42 +00:00
* [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 )
2024-05-14 11:15:17 +00:00
< 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をサポートする他の方法:
2024-06-13 15:11:42 +00:00
* **HackTricksで企業を宣伝したい**または**HackTricksをPDFでダウンロードしたい場合**は[**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)をチェックしてください!
2024-05-14 11:15:17 +00:00
* [**公式PEASS& HackTricksグッズ** ](https://peass.creator-spring.com )を入手する
2024-06-13 15:11:42 +00:00
* [**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を提出する。
2024-05-14 11:15:17 +00:00
< / details >