The vulnerability, CVE-2026-8240, allows unauthenticated users to access metadata of pages in Concrete CMS. The analysis of the security patch for version 9.5.1 reveals that the vulnerability was in the render method of the SummaryTemplate controller. This method is responsible for rendering summary templates for different content types, including pages. Before the patch, this method did not perform any permission checks, allowing any user to access it. The patch introduced a call to canViewRenderedSummaryTemplates, which, for pages, checks if the user has permission to view the page using Checker::canViewPage(). The primary vulnerable function is Concrete\Controller\Backend\SummaryTemplate::render because it was the entry point for the information disclosure and lacked the necessary security checks. The function Concrete\Core\Summary\Category\Driver\PageDriver::canViewRenderedSummaryTemplates is also included as it contains the logic of the fix itself.