关键漏洞信息 漏洞标题: Infinite recursion when querying a repeated field using the != operator 严重性: Moderate (6.5/10) 受影响版本: < 1.0.0 修复版本: 1.0.0 CVE ID: CVE-2025-61766 弱点类型: CWE-674 影响 Infinite recursion can occur if a user queries a repeated field using the comparator. This will result in PHP's call stack limit exceeding, and/or increased memory consumption, potentially leading to a denial of service. 描述 After adding a repeated field to a bucket, for example: Users can query it from a Lua module using an expression like this: When this Lua code is executed on a page, Bucket code calls , which returns , which then calls again. As a result, the code will execute recursively until the call stack limit or memory limit is exceeded, rendering the page inaccessible. 修复 This issue was patched in (v1.0.0).