libcgi-application-plugin-captcha-perl 0.04-4 source package in Ubuntu

Changelog

libcgi-application-plugin-captcha-perl (0.04-4) unstable; urgency=medium

  * Add test dependency on libhttp-server-simple-perl.
    Thanks to Lucas Nussbaum for the bug report.
    (Closes: #1026744)
  * Unset http_proxy for tests.
  * Remove unused lintian override.
  * Add /me to Uploaders.
  * Declare compliance with Debian Policy 4.6.2.
  * Set Rules-Requires-Root: no.
  * Bump debhelper-compat to 13.
  * Annotate test-only build dependencies with <!nocheck>.

 -- gregor herrmann <email address hidden>  Tue, 20 Dec 2022 19:42: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
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcgi-application-plugin-captcha-perl_0.04-4.dsc 2.9 KiB 548a19b4e4eae7253682894677d00d44991e0d0599b896fbc0f1322c14d33403
libcgi-application-plugin-captcha-perl_0.04.orig.tar.gz 9.2 KiB a781722b9626e63f5dc74a3666291ed0995c05416f7505aab6ce084a8687e620
libcgi-application-plugin-captcha-perl_0.04-4.debian.tar.xz 4.1 KiB 6b62905776c09094d09aa0c2aa03a6ca7c064a1afd9499bdd90a568bad7a439a

Available diffs

No changes file available.

Binary packages built by this source

libcgi-application-plugin-captcha-perl: module providing CAPTCHA support in CGI::Application

 CGI::Application::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.