libplack-middleware-csrfblock-perl 0.10-3 source package in Ubuntu

Changelog

libplack-middleware-csrfblock-perl (0.10-3) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Fri, 17 Jun 2022 00:10:16 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libplack-middleware-csrfblock-perl_0.10-3.dsc 2.3 KiB 9149e732aeb3c919c03f72e14015cd171ca7c37fa7ae4c482751ff7cade29604
libplack-middleware-csrfblock-perl_0.10.orig.tar.gz 16.7 KiB eb5ba4f4b391236d9c16111917db5905bac2c02bec93908850b97aa72fa31d3f
libplack-middleware-csrfblock-perl_0.10-3.debian.tar.xz 2.7 KiB 54a5f77e479a4070f40700266a9e77e3490d2c7f78bd314b0d8299dd0d3e3ecf

Available diffs

No changes file available.

Binary packages built by this source

libplack-middleware-csrfblock-perl: Plack middleware to block CSRF (cross-site request forgery)

 Plack::Middleware::CSRFBlock helps blocking Cross-Site Request Forgeries,
 and can be used without any modifications to your application, in
 most cases.
 .
 When the application response Content-type header is "text/html" or
 "application/xhtml+xml", this middleware inserts a hidden input tag
 that contains a token string into all POST-forms found in the
 response body.
 .
 For every POST requests, this middleware ensures that the input
 parameters contain the correct token parameter. If not found, the
 middleware throws an HTTP error 403 (Forbidden) and the forged
 request does not even reach your application.