How to Install and Uninstall libcgi-application-plugin-ratelimit-perl Package on Ubuntu 16.04 LTS (Xenial Xerus)

Last updated: April 29,2024

1. Install "libcgi-application-plugin-ratelimit-perl" package

Learn how to install libcgi-application-plugin-ratelimit-perl on Ubuntu 16.04 LTS (Xenial Xerus)

$ sudo apt update $ sudo apt install libcgi-application-plugin-ratelimit-perl

2. Uninstall "libcgi-application-plugin-ratelimit-perl" package

Please follow the steps below to uninstall libcgi-application-plugin-ratelimit-perl on Ubuntu 16.04 LTS (Xenial Xerus):

$ sudo apt remove libcgi-application-plugin-ratelimit-perl $ sudo apt autoclean && sudo apt autoremove

3. Information about the libcgi-application-plugin-ratelimit-perl package on Ubuntu 16.04 LTS (Xenial Xerus)

Package: libcgi-application-plugin-ratelimit-perl
Priority: optional
Section: universe/perl
Installed-Size: 71
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Perl Group
Architecture: all
Version: 1.0-3
Replaces: libcgi-application-extra-plugin-bundle-perl (<< 0.5)
Depends: perl, libcgi-application-perl, libclass-accessor-perl
Recommends: libcgi-application-plugin-dbh-perl
Breaks: libcgi-application-extra-plugin-bundle-perl (<< 0.5)
Filename: pool/universe/libc/libcgi-application-plugin-ratelimit-perl/libcgi-application-plugin-ratelimit-perl_1.0-3_all.deb
Size: 13472
MD5sum: 7100722c74469b1961d282844d9364e8
SHA1: 8150896558acb6b78a52016689b2eefd914e83ce
SHA256: 3b3910ce946803e5b06266fad6e20de4833b770134f1588d33a63941bd0722a8
Description-en: Perl module for limiting the runmode call rate per user
CGI::Application::Plugin::RateLimit provides protection against a user
calling a runmode too frequently. A typical use-case might be a contact form
that sends email. You'd like to allow your users to send you messages, but
thousands of messages from a single user would be a problem.
.
This module works by maintaining a database of hits to protected runmodes. It
then checks this database to determine if a new hit should be allowed based
on past activity by the user. The user's identity is, by default, tied to
login (via REMOTE_USER) or IP address (via REMOTE_IP) if login info is not
available. You may provide your own identity function via the
identity_callback() method.
.
To use this module you must create a table in your database with the
following schema (using MySQL-syntax, although other DBs may work as well
with minor alterations):
.
CREATE TABLE rate_limit_hits (
user_id VARCHAR(255) NOT NULL,
action VARCHAR(255) NOT NULL,
timestamp UNSIGNED INTEGER NOT NULL,
INDEX (user_id, action, timestamp)
);
.
You may feel free to vary the storage-type and size of user_id and action to
match your usage. For example, if your identity_callback() always returns an
integer you could make user_id an integer column.
.
This table should be periodically cleared of old data. Anything older than the
maximum timeframe being used can be safely deleted.
.
IMPORTANT NOTE: The protection offered by this module is not perfect.
Identifying a user on the internet is very hard and a sophisticated attacker
can work around these checks, by switching IPs or automating login creation.
Description-md5: 54f8605bd6e7975144c5ca1b8abc8626
Enhances: libcgi-application-perl
Homepage: https://metacpan.org/release/CGI-Application-Plugin-RateLimit
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu