The vulnerability is an information disclosure issue in the TYPO3 Workspaces Module. The description explicitly mentions that missing authorization checks in an AJAX backend route allow backend users to disclose sensitive information. The provided commit 114c189c7b30181cee96d176e31f212b02d14d4d directly addresses this by adding authorization logic to the getRowDetails function within Classes/Service/GridDataService.php. The patch adds checks to ensure the user has the appropriate permissions (tables_modify) for the table they are trying to access, and that the table is workspace-aware. This confirms that getRowDetails was the vulnerable function, as it was processing requests without proper authorization, leading to the information disclosure. The new test file Tests/Functional/Service/GridDataServiceTest.php further confirms this by adding tests that assert that an exception is thrown when trying to access unauthorized tables, which is the behavior introduced by the patch.