File: control

package info (click to toggle)
libcgi-untaint-perl 1.26-4
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 116 kB
  • ctags: 21
  • sloc: perl: 302; makefile: 6
file content (28 lines) | stat: -rw-r--r-- 1,359 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: libcgi-untaint-perl
Section: perl
Priority: optional
Build-Depends-Indep: perl (>= 5.8.0), libuniversal-require-perl, libtest-pod-perl, libtest-pod-coverage-perl
Build-Depends: cdbs, debhelper (>= 5)
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Bart Martens <bartm@debian.org>
Standards-Version: 3.8.1
Homepage: http://search.cpan.org/~tmtm/CGI-Untaint/

Package: libcgi-untaint-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}, libuniversal-require-perl
Description: 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.
 .
 This module 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.