How to Install and Uninstall perl-Test-Taint Package on openSUSE Leap

Last updated: July 03,2024

1. Install "perl-Test-Taint" package

Please follow the instructions below to install perl-Test-Taint on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Test-Taint

2. Uninstall "perl-Test-Taint" package

This is a short guide on how to uninstall perl-Test-Taint on openSUSE Leap:

$ sudo zypper remove perl-Test-Taint

3. Information about the perl-Test-Taint package on openSUSE Leap

Information for package perl-Test-Taint:
----------------------------------------
Repository : Main Repository
Name : perl-Test-Taint
Version : 1.08-bp155.2.10
Arch : x86_64
Vendor : openSUSE
Installed Size : 18.8 KiB
Installed : No
Status : not installed
Source package : perl-Test-Taint-1.08-bp155.2.10.src
Upstream URL : https://metacpan.org/release/Test-Taint
Summary : Tools to test taintedness
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.