Remediation Steps
Follow the steps below to remediate this finding on Drupal.
Audit any custom redirect logic in hook_form_submit or EventSubscriber implementations.
Use the Drupal redirect service:
$response = new \Symfony\Component\HttpFoundation\RedirectResponse($url); $response->send(); exit;Review the Redirect module configuration to ensure destination URLs do not contain sensitive tokens.