Skip to main content

Local

Learn how to run Evilginx in your local environment in development mode.

Evilginx

Launch Evilginx in development environment with the following command.

If you built Evilginx yourself from source code and you are in root directory of the repository:

sudo ./build/evilginx -p ./phishlets -t ./redirectors -developer

If you have Evilginx release package:

sudo ./evilginx -developer

In order to be able to locally open your phishing links, in a web browser, using a TLS connection signed by a self-signed TLS certificate, generated by Evilginx, you will need to add Evilginx Root CA certificate into your trusted root certificates storage.

The generated root CA certificate can be found at /root/.evilginx/crt/ca.crt. Make sure to run Evilginx at least once to generate the certificate file.

sudo cp /root/.evilginx/crt/ca.crt /usr/local/share/ca-certificates/evilginx.crt
sudo update-ca-certificates