744 B
744 B
publish, permalink, title, created, modified, tags, cssclasses
| publish | permalink | title | created | modified | tags | cssclasses | |||
|---|---|---|---|---|---|---|---|---|---|
| true | /security/evilginx/basic-config | Server bootstrapping | 2026-01-29T14:04:18.492-07:00 | 2026-02-05T12:21:58.025-07:00 |
|
Install and configure ufw
- Install the ufw package
apt install ufw
- Set the default ufw policies
ufw default deny incoming
ufw default allow outgoing
- Allow required traffic
Note
For the purpose of a basic Evilginx setup on a remote server we will allow ssh, dns, and https but add other services as necessary for your setup
ufw allow ssh
ufw allow 53
ufw allow https
- Enable the firewall
ufw enable
At this point your server has BASIC protections.