| 제목 | AojiaoZero Antaris latest (2026-06, no formal release) SQL Injection |
|---|
| 설명 | Description:
Antaris browser game (based on 2Moons engine) contains SQL injection in
PayPal IPN payment handler (CWE-89) and hardcoded production database
credentials (CWE-798).
File: ipn.php
Hardcoded credentials:
SQL injection in _rewardPurchase():
$currency = $_POST['item_number'];
mysql_query("UPDATE uni1_users SET darkmatter = darkmatter + ".$currency."
WHERE id = '".mysql_real_escape_string($userId)."';");
$currency from PayPal POST data is directly concatenated into UPDATE without
mysql_real_escape_string. IPN handler is publicly accessible (no auth).
Exploitation:
POST /ipn.php with manipulated item_number parameter containing SQL payload.
Countermeasure: Use mysql_real_escape_string on all user input. Use
prepared statements. Remove hardcoded credentials. CVSS 9.8. |
|---|
| 원천 | ⚠️ https://github.com/AojiaoZero/Antaris |
|---|
| 사용자 | Dest1ny_2 (UID 98658) |
|---|
| 제출 | 2026. 06. 01. AM 11:12 (1 월 ago) |
|---|
| 모더레이션 | 2026. 07. 11. PM 02:49 (1 month later) |
|---|
| 상태 | 수락 |
|---|
| VulDB 항목 | 377809 [AojiaoZero Antaris 1.0 PayPal IPN Payment /ipn.php _rewardPurchase item_number SQL 주입] |
|---|
| 포인트들 | 20 |
|---|