How To Install king-phisher on Kali Linux
Introduction
In this tutorial we learn how to install king-phisher on Kali Linux.
What is king-phisher
king-phisher is:
This package contains is a tool for testing and promoting user awareness by simulating real world phishing attacks. It features an easy to use, yet very flexible architecture allowing full control over both emails and server content. King Phisher can be used to run campaigns ranging from simple awareness training to more complicated scenarios in which user aware content is served for harvesting credentials.
There are three methods to install king-phisher 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 king-phisher Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install king-phisher using apt-get by running the following command:
sudo apt-get -y install king-phisherInstall king-phisher Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install king-phisher using apt by running the following command:
sudo apt -y install king-phisherInstall king-phisher 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 king-phisher using aptitude by running the following command:
sudo aptitude -y install king-phisherHow To Uninstall king-phisher on Kali Linux
To uninstall only the king-phisher package we can use the following command:
sudo apt-get remove king-phisherUninstall king-phisher And Its Dependencies
To uninstall king-phisher and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove king-phisherRemove king-phisher Configurations and Data
To remove king-phisher configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge king-phisherRemove king-phisher configuration, data, and all of its dependencies
We can use the following command to remove king-phisher configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge king-phisherDependencies
king-phisher have the following dependencies:
- adduser
- fonts-font-awesome
- fonts-lato
- fonts-roboto-slab
- gir1.2-gtk-3.0
- gir1.2-gtksource-3.0
- gir1.2-vte-2.91
- gir1.2-webkit2-4.0
- gobject-introspection
- libjs-jquery
- libjs-underscore
- postgresql
- pwgen
- python3
- python3-advancedhttpserver
- python3-alembic
- python3-asn1crypto
- python3-blinker
- python3-boltons
- python3-cairo-dev
- python3-cryptography
- python3-dateutil
- python3-dnspython
- python3-ecdsa
- python3-email-validator
- python3-geoip2
- python3-geojson
- python3-graphene
- python3-graphene-sqlalchemy
- python3-graphql-core
- python3-graphql-relay
- python3-icalendar
- python3-jinja2
- python3-jsonschema
- python3-markdown
- python3-markupsafe
- python3-matplotlib
- python3-msgpack
- python3-numpy
- python3-pampy
- python3-paramiko
- python3-pluginbase
- python3-psycopg2
- python3-pyotp
- python3-requests
- python3-requests-file
- python3-rule-engine
- python3-six
- python3-smoke-zephyr
- python3-sqlalchemy
- python3-termcolor
- python3-tz
- python3-tzlocal
- python3-websocket
- python3-xlsxwriter
- python3-yaml
References
Summary
In this tutorial we learn how to install king-phisher package on Kali Linux using different package management tools: apt, apt-get and aptitude.