## https://sploitus.com/exploit?id=F88DD833-ABF2-5DFC-B65F-57E89E8BA052
# CVE-2025-32023 - Redis Remote Code Execution (RCE) π¨
## π§ Overview:
A **critical RCE vulnerability** affecting Redis (< 7.2.4), where attackers can **load malicious modules** using the `MODULE LOAD` command.
## π³οΈ Vulnerability Type:
Remote Code Execution (RCE)
## π₯ **Impact:**
An **unauthenticated attacker** can execute arbitrary code and gain full control of the Redis server.
## π **Requirements for Exploitation:**
* Redis is **exposed to the internet** π
* No **authentication** is set (no `requirepass` or ACLs) β
* Attacker has **write access** to Redis π
## π οΈ **Attack Steps:**
1. Upload malicious `.so` (shared object) file to the Redis server.
2. Use the `MODULE LOAD` command to load the module.
3. Achieve **remote code execution** π£
## π§ͺ **Tested On:**
Redis 7.2.3 and below
## π« **Not Affected:**
Redis **7.2.4 and above**
## π‘οΈ Mitigation Steps:
* β
Upgrade to **Redis 7.2.4+**
* π Use **ACLs** or set a strong `requirepass`
* π§± Block external access via **firewall**
* π Disable `MODULE LOAD` if not needed
## β οΈ Security Tip:
Never expose Redis directly to the internet without proper authentication, ACLs, and network restrictions. Redis is **meant to be internal**.
π§© **CVSS Score:** 9.8 (Critical)
𧬠**Discovered By:** Security researchers in early 2025.
---