这是indexloc提供的服务,不要输入任何密码
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: redis/redis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8.2.2
Choose a base ref
...
head repository: redis/redis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8.2
Choose a head ref
  • 6 commits
  • 10 files changed
  • 3 contributors

Commits on Nov 1, 2025

  1. Fix MurmurHash64A overflow in HyperLogLog with 2GB+ entries

    The MurmurHash64A function in hyperloglog.c used an int parameter for length,
    causing integer overflow when processing PFADD entries larger than 2GB.
    This could lead to server crashes.
    
    Changed the len parameter from int to size_t to properly handle
    large inputs up to SIZE_MAX in HyperLogLog operations.
    Refer to the implementation in facebook/mcrouter@2dbee3d/mcrouter/lib/fbi/hash.c#L54
    sundb authored and YaacovHazan committed Nov 1, 2025
    Configuration menu
    Copy the full SHA
    0b2cb9a View commit details
    Browse the repository at this point in the history
  2. Fix HGETEX out-of-bounds read when FIELDS option missing numfields ar…

    …gument
    
    When the HGETEX command is used with the FIELDS option but without the required
    numfields argument, the server would attempt to access an out-of-bounds argv index.
    
    This PR adds a check to ensure numfields is present before accessing it,
    returning an error if it is missing. Also includes a test case to cover this scenario.
    sggeorgiev authored and YaacovHazan committed Nov 1, 2025
    Configuration menu
    Copy the full SHA
    dc60826 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2025

  1. Fix XACKDEL stack overflow when IDs exceed STREAMID_STATIC_VECTOR_LEN…

    … (CVE-2025-62507)
    
    This issue was introduced by #14130.
    The problem is that when the number of IDs exceeds STREAMID_STATIC_VECTOR_LEN (8), the code forgot to reallocate memory for the IDs array, which causes a stack overflow.
    sundb authored and YaacovHazan committed Nov 2, 2025
    Configuration menu
    Copy the full SHA
    5f83972 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3b78b0 View commit details
    Browse the repository at this point in the history
  3. Redis 8.2.3

    YaacovHazan committed Nov 2, 2025
    Configuration menu
    Copy the full SHA
    de0aaac View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ceb01e1 View commit details
    Browse the repository at this point in the history
Loading