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**: OmniGen2-RL has an **Unsafe Pickle Deserialization** flaw in its reward server. π₯ **Consequences**: Attackers can achieve **Remote Code Execution (RCE)**, leading to total system compromise.
Q2Root Cause? (CWE/Flaw)
π‘οΈ **Root Cause**: **CWE-502** (Deserialization of Untrusted Data). The code blindly unpickles user-controlled input without validation. π **Flaw**: Trusting external data as executable Python objects.
Q3Who is affected? (Versions/Components)
π₯ **Affected**: **Beijing Academy of Artificial Intelligence (BAAI)**'s **OmniGen2-RL** product. Specifically the `reward_server` components. π¦ **Version**: All versions prior to the fix (implied by the advisory).
Q4What can hackers do? (Privileges/Data)
π **Hacker Power**: Full **Remote Code Execution**. π **Data**: Complete access to Confidentiality, Integrity, and Availability. The attacker owns the server.
Q5Is exploitation threshold high? (Auth/Config)
β‘ **Threshold**: **LOW**. CVSS Vector: `AV:N/AC:L/PR:N/UI:N`. No authentication, no user interaction, and network-accessible. π― **Easy to exploit** for anyone on the network.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π **Public Exploit**: **Yes**. References point to specific code lines in `reward_proxy.py` and `reward_server.py` on GitHub. π **PoC**: Available via VulnCheck advisory and source code analysis.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: Scan for `pickle.loads()` or `pickle.load()` in `OmniGen2-RL/reward_server/` directories. π **Look for**: Unsanitized input passed directly to deserialization functions.
π§ **No Patch?**: **Isolate** the reward server. π« **Block** network access to port/service. π **Disable** the `reward_server` component entirely if not essential for your workflow.
Q10Is it urgent? (Priority Suggestion)
π₯ **Urgency**: **CRITICAL**. CVSS Score is **9.8** (High). π¨ Immediate action required. RCE via network is a top-priority threat. Patch or isolate NOW.