Local
Learn how to run Evilginx in your local environment in development mode.
Evilginx
Launch Evilginx in development environment with the following command.
- Linux
- Windows
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
If you built Evilginx yourself from source code and you are in root directory of the repository:
build\evilginx.exe -p ./phishlets -t ./redirectors -developer
If you have Evilginx release package:
evilginx.exe -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.
- Linux
- Windows
sudo cp /root/.evilginx/crt/ca.crt /usr/local/share/ca-certificates/evilginx.crt
sudo update-ca-certificates
In a cmd shell running as Administrator:
certutil -addstore -f "ROOT" %USERPROFILE%\.evilginx\crt\ca.crt