libcgi-untaint-perl 1.26-8 source package in Ubuntu

Changelog

libcgi-untaint-perl (1.26-8) unstable; urgency=medium

  [ Damyan Ivanov ]
  * declare conformance with Policy 4.1.3 (no changes needed)

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

  [ Debian Janitor ]
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.

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

 -- Jelmer Vernooij <email address hidden>  Fri, 10 Jun 2022 15:18:28 +0100

Upload details

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

See full publishing history Publishing

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcgi-untaint-perl_1.26-8.dsc 2.2 KiB 095d5f2757095169ce51e050c72b41d1a81aa543871ae5e0650bfb98f751aca1
libcgi-untaint-perl_1.26.orig.tar.gz 8.7 KiB 08e12a7ec938bc81899c02a6426777b9fe0e75da1161516416999d3052bc63b9
libcgi-untaint-perl_1.26-8.debian.tar.xz 3.2 KiB 982a9a6dccf954a74d4a0462b802d7d049eaa8da45b0c791cd9b2d912f211c18

Available diffs

No changes file available.

Binary packages built by this source

libcgi-untaint-perl: module to process CGI input parameters

 Dealing with large web based applications with multiple forms is a
 minefield. It's often hard enough to ensure you validate all your
 input at all, without having to worry about doing it in a consistent
 manner. If any of the validation rules change, you often have to alter
 them in many different places. And, if you want to operate taint-safe,
 then you're just adding even more headaches.
 .
 CGI::Untaint provides a simple, convenient, abstracted and extensible
 manner for validating and untainting the input from web forms.
 .
 You simply create a handler with a hash of your parameters (usually
 $q->Vars), and then iterate over the fields you wish to extract,
 performing whatever validations you choose. The resulting variable is
 guaranteed not only to be valid, but also untainted.