/docker-evilginx3

Docker setup for Evilginx version 3.0. For educational purposes only!

Primary LanguageDockerfileGNU General Public License v3.0GPL-3.0

Carp704/docker-evilginx3

Docker setup for Evilginx version 3.0.

Usage

Example snippet to help you get started creating a container.

Docker

# Create the image
cd /opt
git clone https://github.com/Carp704/docker-evilginx3.git
cd docker-evilginx3
docker build -t evilginx3-image .

# Start the container
docker run --name=evilginx3_prod \
  -e TZ=America/New_York \
  -p 443:443 \
  -p 53:53 \
  -v /opt/docker-evilginx3/config:/config \
  -v /opt/docker-evilginx3/phishlets:/phishlets \
  --restart=unless-stopped \
  evilginx3-image

# View the running container
docker ps -a

# Access the running container
docker exec -it evilginx3_prod /bin/sh

# Start Evilginx
/bin/evilginx -p /phishlets -c /config -developer

Support Info

# Shell access 
docker exec -it evilginx3_prod /bin/sh

# Monitor the logs of the container in realtime
docker logs -f evilginx3_prod

Credit