Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
1–10 of 15 posts
Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#2Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#3Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#4most people use redis on localhost (i hope)
Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#5The github issue has these workarounds: > An additional workaround to mitigate the problem without patching the redis-server executable is to prevent users from executing Lua scripts. This can be done using ACL to restrict EVAL and EVALSHA commands.
I guess most people doesn't use the lua engine, so this is probably a good advice to disable even if upgrading to a non-vuln version of Redis.
Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#6https://news.ycombinator.com/item?id=45497027
Also: "As part of an ongoing effort by Redis and the Redis community to maintain Redis’ safety, security, and compliance posture, a security vulnerability in Redis has been identified and remediated in the versions indicated below." seems to be a bit strange given that this wasn't an effort led by Redis?
Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#7most people use redis on localhost (i hope)
I’d imagine recent uptick in using services like Upstash may make it harder for people to know if they are vulnerable or not. Is this mitigated by disabling Lua script execution?
Also:
> Exploitation of this vulnerability requires an attacker to first gain authenticated access to your Redis instance.
Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#8Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#9most people use redis on localhost (i hope)
I’d imagine recent uptick in using services like Upstash may make it harder for people to know if they are vulnerable or not. Is this mitigated by disabling Lua script execution?
Re: Redis CVE-2025-49844: Use-After-Free may lead to remote code execution
#10Note that this requires an authenticated user, so most redis installations are not directly at risk. The github issue has these workarounds: > An additional workaround to mitigate the problem without patching the redis-server executable is to prevent users from executing Lua scripts. This can be done using ACL to restrict EVAL and EVALSHA commands. I guess most people doesn't use the lua engine, so this is probably a…