From 35920e96787019ed5a699e906d781a44a108922e Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Thu, 13 Mar 2025 15:25:25 +0000 Subject: [PATCH] Enhance UFW setup in install script to limit SSH connections --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 0a271112..c1636764 100755 --- a/install.sh +++ b/install.sh @@ -97,6 +97,7 @@ sudo ufw default allow outgoing if systemctl is-active --quiet sshd; then echo -e "${YELLOW}[+] SSH Server detected; Enabling SSH rule...${NC}" sudo ufw limit 22/tcp + sudo ufw limit ssh fi sudo ufw enable sudo ufw status numbered