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

Changelog

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

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * Remove Jaldhar H. Vyas from Uploaders. Thanks for your work!

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

  [ Laurent Baillet ]
  * fix lintian file-contains-trailing-whitespace warning

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

  [ Debian Janitor ]
  * Bump debhelper from deprecated 8 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Remove constraints unnecessary since stretch:
    + libcgi-application-plugin-captcha-perl: Drop versioned constraint on
      libcgi-application-extra-plugin-bundle-perl in Replaces.
    + libcgi-application-plugin-captcha-perl: Drop versioned constraint on
      libcgi-application-extra-plugin-bundle-perl in Breaks.

 -- Jelmer Vernooij <email address hidden>  Thu, 09 Jun 2022 23:00:11 +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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcgi-application-plugin-captcha-perl_0.04-3.dsc 2.4 KiB 597d6bc163d6d684a0ec6721bf4c78d45c8a83b323948b61c8b8c93ac415b292
libcgi-application-plugin-captcha-perl_0.04.orig.tar.gz 9.2 KiB a781722b9626e63f5dc74a3666291ed0995c05416f7505aab6ce084a8687e620
libcgi-application-plugin-captcha-perl_0.04-3.debian.tar.xz 4.1 KiB c25eb3c405e1f27c354a1862680931dd8fcf0d880ac7eb3cbf47fde829d9c318

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.