Skip to content

Instantly share code, notes, and snippets.

@CrazyTim71
CrazyTim71 / install_evilginx3.sh
Last active March 6, 2024 09:09 — forked from dunderhay/install_evilginx3.sh
bash script to install evilginx3 on a debian linux host
#!/bin/bash
set -e
# https://go.dev/dl/
GO_VERSION="1.22.1"
GO_URL="https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz"
EXPECTED_CHECKSUM="aab8e15785c997ae20f9c88422ee35d962c4562212bb0f879d052a35c8307c7f"
# Log output of script
exec > >(tee -i /home/linux/install.log)