libcgi-application-plugin-captcha-perl 0.04-2 source package in Ubuntu
Changelog
libcgi-application-plugin-captcha-perl (0.04-2) unstable; urgency=low * Team upload [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ Axel Beckert ] * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg- copyright" [ gregor herrmann ] * debian/control: remove Nicholas Bamber from Uploaders on request of the MIA team. * Strip trailing slash from metacpan URLs. [ Salvatore Bonaccorso ] * Update Vcs-Browser URL to cgit web frontend [ Damyan Ivanov ] * Mark package as autopkgtestable * Declare compliance with Debian Policy 3.9.6 * Add explicit build dependency on libmodule-build-perl -- Damyan Ivanov <email address hidden> Wed, 10 Jun 2015 12:58:21 +0000
Upload details
- Uploaded by:
- Debian Perl Group on 2015-06-10
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Low Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Groovy | release | on 2020-04-24 | universe | perl |
Focal | release | on 2019-10-18 | universe | perl |
Bionic | release | on 2017-10-24 | universe | perl |
Xenial | release | on 2015-10-22 | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libcgi-application-plugin-captcha-perl_0.04-2.dsc | 2.4 KiB | cf0a5e44762abb8c4cc06c5697c6350e073f319790357825d5e6cce173eb7976 |
libcgi-application-plugin-captcha-perl_0.04.orig.tar.gz | 9.2 KiB | a781722b9626e63f5dc74a3666291ed0995c05416f7505aab6ce084a8687e620 |
libcgi-application-plugin-captcha-perl_0.04-2.debian.tar.xz | 3.7 KiB | 88497580c53c37ac8e097d55b9536789721a3f26f468c055999fa626f7dc379d |
Available diffs
- diff from 0.04-1 (in Ubuntu) to 0.04-2 (1.6 KiB)
No changes file available.
Binary packages built by this source
- libcgi-application-plugin-captcha-perl: module providing CAPTCHA support in CGI::Application
CGI::Applicati
on::Plugin: :CAPTCHA allows programmers to easily add and
verify CAPTCHAs in their CGI::Application-derived web applications.
A CAPTCHA (or Completely Automated Public Turing Test to Tell Computers
and Humans Apart) is an image with a random string of characters. A user
must successfully enter the random string in order to submit a form. This
is a simple (yet annoying) procedure for humans to complete, but one that is
significantly more difficult for a form-stuffing script to complete without
having to integrate some sort of OCR.
.
CAPTCHAs are not a perfect solution. Any skilled, diligent cracker will
eventually be able to bypass a CAPTCHA, but it should be able to shut down
your average script-kiddie.
.
When a CAPTCHA is created with this module, raw image data is transmitted
from your web application to the client browser. A cookie containing a
checksum is also transmitted with the image. When the client submits their
form for processing (along with their verification of the random string),
captcha_verify() generates a checksum of the verification string the user
entered. If the newly generated checksum matches the checksum found in the
cookie, the CAPTCHA is assumed to have been successfully entered, and the
user is allowed to continue processing their form.