How To Install libhtml-tagfilter-perl on Kali Linux
Introduction
In this tutorial we learn how to install libhtml-tagfilter-perl
on Kali Linux.
What is libhtml-tagfilter-perl
libhtml-tagfilter-perl is:
HTML::TagFilter is a subclass of HTML::Parser with a single purpose: it will remove unwanted HTML tags and attributes from a piece of text. It can act in a more or less fine-grained way: you can specify permitted tags, permitted attributes of each tag, and permitted values for each attribute in as much detail as you like.
Tags which are not allowed are removed. Tags which are allowed are trimmed down to only the attributes which are allowed for each tag. It is possible to allow all or no attributes from a tag, or to allow all or no values for an attribute, and so on.
The filter will also guard against cross-site scripting attacks and obfuscate any mailto:email addresses, unless you tell it not to.
There are three methods to install libhtml-tagfilter-perl
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libhtml-tagfilter-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libhtml-tagfilter-perl
using apt-get
by running the following command:
sudo apt-get -y install libhtml-tagfilter-perl
Install libhtml-tagfilter-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libhtml-tagfilter-perl
using apt
by running the following command:
sudo apt -y install libhtml-tagfilter-perl
Install libhtml-tagfilter-perl Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libhtml-tagfilter-perl
using aptitude
by running the following command:
sudo aptitude -y install libhtml-tagfilter-perl
How To Uninstall libhtml-tagfilter-perl on Kali Linux
To uninstall only the libhtml-tagfilter-perl
package we can use the following command:
sudo apt-get remove libhtml-tagfilter-perl
Uninstall libhtml-tagfilter-perl And Its Dependencies
To uninstall libhtml-tagfilter-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libhtml-tagfilter-perl
Remove libhtml-tagfilter-perl Configurations and Data
To remove libhtml-tagfilter-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libhtml-tagfilter-perl
Remove libhtml-tagfilter-perl configuration, data, and all of its dependencies
We can use the following command to remove libhtml-tagfilter-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libhtml-tagfilter-perl
Dependencies
libhtml-tagfilter-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libhtml-tagfilter-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.