How To Install swfmill on Kali Linux
Introduction
In this tutorial we learn how to install swfmill on Kali Linux.
What is swfmill
swfmill is:
swfmill is a tool to process Shockwave Flash(TM) (SWF) files. It can convert SWF from and to an XML-dialect called swfml, which is closely modeled after the SWF file format.
Apart from this xml2swf and swf2xml functionality, it also provides a libxslt-based XSL transformator that supports an extension (“swft”) which helps with generating IDs for SWF objects and can import an SWF as XML using an XPath command (swft:document()).
As a simple application of such functionality, swfmill can pack together a bunch of media files (currently JPGs, PNGs, TTFs and other SWFs) into an SWF as “library objects” for your attachMovie() pleasure.
There are three methods to install swfmill 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 swfmill Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install swfmill using apt-get by running the following command:
sudo apt-get -y install swfmillInstall swfmill Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install swfmill using apt by running the following command:
sudo apt -y install swfmillInstall swfmill 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 updateAfter updating apt database, We can install swfmill using aptitude by running the following command:
sudo aptitude -y install swfmillHow To Uninstall swfmill on Kali Linux
To uninstall only the swfmill package we can use the following command:
sudo apt-get remove swfmillUninstall swfmill And Its Dependencies
To uninstall swfmill and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove swfmillRemove swfmill Configurations and Data
To remove swfmill configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge swfmillRemove swfmill configuration, data, and all of its dependencies
We can use the following command to remove swfmill configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge swfmillDependencies
swfmill have the following dependencies:
References
Summary
In this tutorial we learn how to install swfmill package on Kali Linux using different package management tools: apt, apt-get and aptitude.