libcgi-application-plugin-captcha-perl 0.04-2.1 source package in Ubuntu
Changelog
libcgi-application-plugin-captcha-perl (0.04-2.1) unstable; urgency=medium * Non maintainer upload by the Reproducible Builds team. * No source change upload to rebuild on buildd with .buildinfo files. -- Holger Levsen <email address hidden> Thu, 07 Jan 2021 14:15:46 +0100
Upload details
- Uploaded by:
- Debian Perl Group on 2021-01-07
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Hirsute | release | on 2021-01-08 | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libcgi-application-plugin-captcha-perl_0.04-2.1.dsc | 2.5 KiB | 81de9bb64d5839dae13a3434f500e81451e9c1c9b16ab647908cd3cb3d777f1f |
libcgi-application-plugin-captcha-perl_0.04.orig.tar.gz | 9.2 KiB | a781722b9626e63f5dc74a3666291ed0995c05416f7505aab6ce084a8687e620 |
libcgi-application-plugin-captcha-perl_0.04-2.1.debian.tar.xz | 3.8 KiB | e12acd401dc63dee029342ef636741c44fe166fe9adb361dbd8caf9879a6f4d4 |
Available diffs
- diff from 0.04-2 to 0.04-2.1 (395 bytes)
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.