Rails provides three built-in CSRF protection strategies via `protect_from_forgery`: `exception` (raises an error and halts execution), `null_session` (nullifies the session but lets the request through), and `reset_session` (resets the session but also lets the request through). A key security gotcha is that only the
Sort: