Open redirect detected.

Description

A redirect using unsanitized user input is bad practice and puts your application at greater risk of phishing attacks.

Remediations

❌ Do not use unsanitized user input when constructing URLs

✅ Instead, ensure the input is validated by using a safe list or a mapping when constructing URLs

  $paths = [
"1" => "/planes",
"2" => "/trains",
"3" => "/automobiles",
];

$transport = $_GET["transport"];
$this->redirect($paths[$transport]");

Resources

Associated CWE

OWASP Top 10

Configuration

To skip this rule during a scan, use the following flag

bearer scan /path/to/your-project/ --skip-rule=php_symfony_open_redirect

To run only this rule during a scan, use the following flag

bearer scan /path/to/your-project/ --only-rule=php_symfony_open_redirect

Ready to take the next step? Learn more about Bearer Cloud.