How to Install and Uninstall perl-Test-Taint.x86_64 Package on Fedora 35

Last updated: May 17,2024

1. Install "perl-Test-Taint.x86_64" package

This tutorial shows how to install perl-Test-Taint.x86_64 on Fedora 35

$ sudo dnf update $ sudo dnf install perl-Test-Taint.x86_64

2. Uninstall "perl-Test-Taint.x86_64" package

This guide covers the steps necessary to uninstall perl-Test-Taint.x86_64 on Fedora 35:

$ sudo dnf remove perl-Test-Taint.x86_64 $ sudo dnf autoremove

3. Information about the perl-Test-Taint.x86_64 package on Fedora 35

Last metadata expiration check: 2:17:11 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : perl-Test-Taint
Version : 1.08
Release : 8.fc35
Architecture : x86_64
Size : 19 k
Source : perl-Test-Taint-1.08-8.fc35.src.rpm
Repository : fedora
Summary : Tools to test taintedness
URL : https://metacpan.org/release/Test-Taint
License : GPL+ or Artistic
Description : Tainted data is data that comes from an unsafe source, such as the command
: line, or, in the case of web apps, any GET or POST transactions. Read the
: perlsec man page for details on why tainted data is bad, and how to untaint
: the data.
:
: When you're writing unit tests for code that deals with tainted data, you'll
: want to have a way to provide tainted data for your routines to handle, and
: easy ways to check and report on the taintedness of your data, in standard
: Test::More style.