The vulnerability lies in several backend API controllers within TYPO3 CMS that failed to perform adequate permission checks before providing access to file metadata. Authenticated backend users could exploit this by sending crafted requests to these API endpoints to retrieve information about files and folders they were not authorized to access. The analysis of the provided patches confirms that the functions process in ImageProcessController, resourceAction in LinkController, and gatherInformationAction in ResourceController were all missing crucial checkActionPermission('read') calls. The absence of these checks meant that any authenticated user could potentially enumerate and view metadata of files stored within the CMS, regardless of their assigned permissions or file mount restrictions. The patches rectify this by adding the necessary permission checks, thus enforcing the intended access control policy.