Unsanitized user input in redirect

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 redirect URLs

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

  transport_path = case params[:transport_type]
when "planes"
planes_path
when "trains"
trains_path
when "automobiles"
automobiles_path
default
root
end

redirect_to transport_path

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=ruby_rails_open_redirect

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

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