mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-26 22:52:06 +00:00
107 lines
5.4 KiB
Markdown
107 lines
5.4 KiB
Markdown
# unlink
|
||
|
||
{% hint style="success" %}
|
||
AWSハッキングを学び、実践する:<img src="../../../.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="../../../.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
GCPハッキングを学び、実践する:<img src="../../../.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="../../../.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>HackTricksをサポートする</summary>
|
||
|
||
* [**サブスクリプションプラン**](https://github.com/sponsors/carlospolop)を確認してください!
|
||
* **💬 [**Discordグループ**](https://discord.gg/hRep4RUj7f)または[**Telegramグループ**](https://t.me/peass)に参加するか、**Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**をフォローしてください。**
|
||
* **ハッキングのトリックを共有するには、[**HackTricks**](https://github.com/carlospolop/hacktricks)および[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)のGitHubリポジトリにPRを提出してください。**
|
||
|
||
</details>
|
||
{% endhint %}
|
||
|
||
### コード
|
||
```c
|
||
// From https://github.com/bminor/glibc/blob/master/malloc/malloc.c
|
||
|
||
/* Take a chunk off a bin list. */
|
||
static void
|
||
unlink_chunk (mstate av, mchunkptr p)
|
||
{
|
||
if (chunksize (p) != prev_size (next_chunk (p)))
|
||
malloc_printerr ("corrupted size vs. prev_size");
|
||
|
||
mchunkptr fd = p->fd;
|
||
mchunkptr bk = p->bk;
|
||
|
||
if (__builtin_expect (fd->bk != p || bk->fd != p, 0))
|
||
malloc_printerr ("corrupted double-linked list");
|
||
|
||
fd->bk = bk;
|
||
bk->fd = fd;
|
||
if (!in_smallbin_range (chunksize_nomask (p)) && p->fd_nextsize != NULL)
|
||
{
|
||
if (p->fd_nextsize->bk_nextsize != p
|
||
|| p->bk_nextsize->fd_nextsize != p)
|
||
malloc_printerr ("corrupted double-linked list (not small)");
|
||
|
||
// Added: If the FD is not in the nextsize list
|
||
if (fd->fd_nextsize == NULL)
|
||
{
|
||
|
||
if (p->fd_nextsize == p)
|
||
fd->fd_nextsize = fd->bk_nextsize = fd;
|
||
else
|
||
// Link the nexsize list in when removing the new chunk
|
||
{
|
||
fd->fd_nextsize = p->fd_nextsize;
|
||
fd->bk_nextsize = p->bk_nextsize;
|
||
p->fd_nextsize->bk_nextsize = fd;
|
||
p->bk_nextsize->fd_nextsize = fd;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
p->fd_nextsize->bk_nextsize = p->bk_nextsize;
|
||
p->bk_nextsize->fd_nextsize = p->fd_nextsize;
|
||
}
|
||
}
|
||
}
|
||
```
|
||
### グラフィカルな説明
|
||
|
||
unlinkプロセスの素晴らしいグラフィカルな説明を確認してください:
|
||
|
||
<figure><img src="../../../.gitbook/assets/image (3) (1) (1) (1) (1).png" alt=""><figcaption><p><a href="https://ctf-wiki.mahaloz.re/pwn/linux/glibc-heap/implementation/figure/unlink_smallbin_intro.png">https://ctf-wiki.mahaloz.re/pwn/linux/glibc-heap/implementation/figure/unlink_smallbin_intro.png</a></p></figcaption></figure>
|
||
|
||
### セキュリティチェック
|
||
|
||
* チャンクの指定サイズが次のチャンクに示されたprev\_sizeと同じであることを確認します
|
||
* また、`P->fd->bk == P`および`P->bk->fw == P`であることを確認します
|
||
* チャンクが小さくない場合、`P->fd_nextsize->bk_nextsize == P`および`P->bk_nextsize->fd_nextsize == P`であることを確認します
|
||
|
||
### リーク
|
||
|
||
unlinkされたチャンクは割り当てられたアドレスをクリーニングしないため、アクセスして読むことができれば、いくつかの興味深いアドレスをリークすることが可能です:
|
||
|
||
Libcリーク:
|
||
|
||
* Pが二重リンクリストの先頭にある場合、`bk`はlibcの`malloc_state`を指します
|
||
* Pが二重リンクリストの末尾にある場合、`fd`はlibcの`malloc_state`を指します
|
||
* 二重リンクリストに1つのフリーチャンクしか含まれていない場合、Pは二重リンクリストにあり、`fd`と`bk`の両方が`malloc_state`内のアドレスをリークできます。
|
||
|
||
ヒープリーク:
|
||
|
||
* Pが二重リンクリストの先頭にある場合、`fd`はヒープ内の利用可能なチャンクを指します
|
||
* Pが二重リンクリストの末尾にある場合、`bk`はヒープ内の利用可能なチャンクを指します
|
||
* Pが二重リンクリストにある場合、`fd`と`bk`の両方がヒープ内の利用可能なチャンクを指します
|
||
|
||
{% hint style="success" %}
|
||
Learn & practice AWS Hacking:<img src="../../../.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="../../../.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
Learn & practice GCP Hacking: <img src="../../../.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="../../../.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>Support HackTricks</summary>
|
||
|
||
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|
||
{% endhint %}
|