Struct actix_web::middleware::csrf::CsrfFilter [−][src]
pub struct CsrfFilter { /* fields omitted */ }A middleware that filters cross-site requests.
To construct a CSRF filter:
- Call
CsrfFilter::buildto start building. - Add allowed origins.
- Call finish to retrieve the constructed filter.
Example
use actix_web::middleware::csrf; use actix_web::App; let app = App::new() .middleware(csrf::CsrfFilter::new().allowed_origin("https://www.example.com"));
Methods
impl CsrfFilter[src]
impl CsrfFilterpub fn new() -> CsrfFilter[src]
pub fn new() -> CsrfFilterStart building a CsrfFilter.
pub fn allowed_origin<T: Into<String>>(self, origin: T) -> CsrfFilter[src]
pub fn allowed_origin<T: Into<String>>(self, origin: T) -> CsrfFilterAdd an origin that is allowed to make requests. Will be verified
against the Origin request header.
pub fn allow_xhr(self) -> CsrfFilter[src]
pub fn allow_xhr(self) -> CsrfFilterAllow all requests with an X-Requested-With header.
A cross-site attacker should not be able to send requests with custom
headers unless a CORS policy whitelists them. Therefore it should be
safe to allow requests with an X-Requested-With header (added
automatically by many JavaScript libraries).
This is disabled by default, because in Safari it is possible to circumvent this using redirects and Flash.
Use this method to enable more lax filtering.
pub fn allow_missing_origin(self) -> CsrfFilter[src]
pub fn allow_missing_origin(self) -> CsrfFilterAllow requests if the expected Origin header is missing (and
there is no Referer to fall back on).
The filter is conservative by default, but it should be safe to allow
missing Origin headers because a cross-site attacker cannot prevent
the browser from sending Origin on unprotected requests.
pub fn allow_upgrade(self) -> CsrfFilter[src]
pub fn allow_upgrade(self) -> CsrfFilterAllow cross-site upgrade requests (for example to open a WebSocket).
Trait Implementations
impl Default for CsrfFilter[src]
impl Default for CsrfFilterfn default() -> CsrfFilter[src]
fn default() -> CsrfFilterReturns the "default value" for a type. Read more
impl<S> Middleware<S> for CsrfFilter[src]
impl<S> Middleware<S> for CsrfFilterfn start(&self, req: &HttpRequest<S>) -> Result<Started>[src]
fn start(&self, req: &HttpRequest<S>) -> Result<Started>Method is called when request is ready. It may return future, which should resolve before next middleware get called. Read more
fn response(&self, req: &HttpRequest<S>, resp: HttpResponse) -> Result<Response>[src]
fn response(&self, req: &HttpRequest<S>, resp: HttpResponse) -> Result<Response>Method is called when handler returns response, but before sending http message to peer. Read more
fn finish(&self, req: &HttpRequest<S>, resp: &HttpResponse) -> Finished[src]
fn finish(&self, req: &HttpRequest<S>, resp: &HttpResponse) -> FinishedMethod is called after body stream get sent to peer.
Auto Trait Implementations
impl Send for CsrfFilter
impl Send for CsrfFilterimpl Sync for CsrfFilter
impl Sync for CsrfFilter