This is a summary of the AI-generated 10-question deep analysis. The full version (longer answers, follow-up Q&A, related CVEs) requires login. Read the full analysis β
Q1What is this vulnerability? (Essence + Consequences)
π¨ **Essence**: Aerospike allows **OS Command Injection** via UDFs. π₯ **Consequences**: Attackers execute arbitrary commands on **all cluster nodes** with current user privileges. Total server compromise!
Q2Root Cause? (CWE/Flaw)
π‘οΈ **Root Cause**: Flawed handling of **User Defined Functions (UDFs)**. Specifically, Lua scripts can trigger system-level commands without proper sanitization. CWE not specified, but it's a classic **Injection** flaw.
Q3Who is affected? (Versions/Components)
π¦ **Affected**: Aerospike Database **Community Edition**. π **Version**: **4.9.0.5** and likely earlier versions up to 5.1.0.2. Enterprise versions patched in 5.1.0.3.
Q4What can hackers do? (Privileges/Data)
π **Attacker Power**: Full **OS Command Execution** (RCE). π **Access**: Can read/write data, install backdoors, and pivot to other nodes. Runs with **current user permissions** (often root/service accounts).
Q5Is exploitation threshold high? (Auth/Config)
π **Threshold**: **Medium**. Requires access to write/execute UDFs. If UDF access is open or credentials are weak, exploitation is trivial. No complex network bypass needed.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π₯ **Public Exp**: **YES**. Multiple PoCs available on GitHub (e.g., `cve2020-13151.py`). Automated scripts exist. Wild exploitation is highly likely given ease of use.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: Scan for Aerospike ports (3000-3003). Check version via `aerospike-info` or HTTP endpoint. Look for **UDF upload capabilities**. Use Nmap scripts for Aerospike detection.
Q8Is it fixed officially? (Patch/Mitigation)
β **Fixed**: Yes. Upgrade to **Aerospike Server 5.1.0.3** or later. The vendor released notes confirming the fix for both Community and Enterprise editions.
Q9What if no patch? (Workaround)
π§ **No Patch?**: **Disable UDFs** if not needed. Restrict network access to Aerospike ports. Implement strict **RBAC** (Role-Based Access Control). Isolate the cluster.
Q10Is it urgent? (Priority Suggestion)
π΄ **Urgency**: **CRITICAL**. RCE with public PoCs. Immediate patching or mitigation required. Do not ignore! ππ¨