Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-46819 — Proof-of-concept exploit for CVE-2025-46819, a Redis Lua long-string delimiter out-of-bounds read, demonstrating a crash via malformed input. | Kitploit
Tools/GitHubGitHub/dwisiswant0/cve-2025-46819
Vulnerability AnalysisExploitationWeb SecurityFuzzingBinary Analysis
GitHubdwisiswant0/cve-2025-46819

CVE-2025-46819

Proof-of-concept exploit for CVE-2025-46819, a Redis Lua long-string delimiter out-of-bounds read, demonstrating a crash via malformed input.

View Repository
4611 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2025-46819 – Redis Lua Long-String Delimiter Out-of-Bounds Read

Malformed long-string delimiter causing Lua lexer OOBs read on Redis 8.2.1.

Overview

Lua's long-string parser in Redis 8.2.1 mishandles malformed [=... sequences, returning sentinel values that lead to buffer underflows or excessive recursion. Attackers can cause Redis to read out of bounds or overflow the C stack.

Environment

  • Redis server 8.2.1 (or any vulnerable release before 8.2.2)
  • redis-cli
  • Local network access to the Redis instance

Files

  • CVE-2025-46819.lua – constructs a huge malformed delimiter and feeds it to loadstring.

Usage

root@kitploit:~
redis-cli -h localhost -p 6379 --eval CVE-2025-46819.lua

Expected result:

On vulnerable versions you'll typically see "ERR C stack overflow" or an immediate crash. Redis 8.2.2 (commit 3a1624da2449ac3dbfc4bdaed43adf77a0b7bfba) rejects the script with "invalid long string delimiter" without destabilizing the server.

Mitigation

Upgrade to Redis 8.2.2 or later, or disable Lua for untrusted users.

Download Tool