2024-10-21 12:31:30 +07:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-06-12 18:09:56 +07:00
|
|
|
let
|
|
|
|
cfg = config.profile.openssh;
|
2024-09-20 18:42:07 +07:00
|
|
|
inherit (lib.meta) getExe;
|
2024-06-12 18:09:56 +07:00
|
|
|
in
|
2024-10-11 10:25:10 +07:00
|
|
|
lib.mkMerge [
|
|
|
|
(lib.mkIf cfg.enable {
|
2024-06-12 20:25:30 +07:00
|
|
|
networking.firewall = {
|
|
|
|
allowedTCPPorts = lib.mkAfter [ 22 ];
|
|
|
|
};
|
2024-06-12 18:09:56 +07:00
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
PasswordAuthentication = false;
|
2024-06-25 21:34:34 +07:00
|
|
|
KbdInteractiveAuthentication = false;
|
2024-08-09 21:39:28 +07:00
|
|
|
UseDns = false;
|
2024-06-12 18:09:56 +07:00
|
|
|
X11Forwarding = false;
|
|
|
|
PermitRootLogin = "no";
|
2024-08-09 21:43:00 +07:00
|
|
|
GSSAPIAuthentication = false;
|
2024-06-12 18:09:56 +07:00
|
|
|
};
|
|
|
|
};
|
2024-06-12 19:53:29 +07:00
|
|
|
services.fail2ban = {
|
|
|
|
enable = true;
|
|
|
|
# Ban IP after 5 failures
|
|
|
|
maxretry = 5;
|
|
|
|
ignoreIP = [
|
|
|
|
# Whitelist some subnets
|
|
|
|
"10.0.0.0/8"
|
|
|
|
"172.16.0.0/12"
|
|
|
|
"192.168.0.0/16"
|
|
|
|
];
|
|
|
|
bantime = "24h"; # Ban IPs for one day on the first ban
|
|
|
|
bantime-increment = {
|
|
|
|
enable = true; # Enable increment of bantime after each violation
|
2024-06-25 22:45:00 +07:00
|
|
|
# formula = "ban.Time * math.exp(float(ban.Count+1)*banFactor)/math.exp(1*banFactor)";
|
|
|
|
multipliers = "1 2 4 8 16 32 64";
|
2024-06-12 19:53:29 +07:00
|
|
|
maxtime = "168h"; # Do not ban for more than 1 week
|
|
|
|
overalljails = true; # Calculate the bantime based on all the violations
|
|
|
|
};
|
|
|
|
};
|
2024-09-20 18:42:07 +07:00
|
|
|
|
2024-11-03 11:32:15 +07:00
|
|
|
# sops.secrets."ntfy/tokens/homeserver" = {
|
|
|
|
# sopsFile = ../../secrets/ntfy.yaml;
|
|
|
|
# };
|
|
|
|
# sops.templates."ntfy-ssh-login.sh" = {
|
|
|
|
# content = builtins.readFile (
|
|
|
|
# lib.meta.getExe (
|
|
|
|
# pkgs.writeShellScriptBin "ntfy-ssh-login.sh" # sh
|
|
|
|
# ''
|
|
|
|
# if [ "$PAM_TYPE" == "open_session" ]; then
|
|
|
|
# ${getExe pkgs.curl} -X POST \
|
|
|
|
# -H "X-Priority: 4" \
|
|
|
|
# -H "X-Tags: warning" \
|
|
|
|
# -H "Authorization: Bearer ${config.sops.placeholder."ntfy/tokens/homeserver"}" \
|
|
|
|
# -H "X-Title: SSH login" \
|
|
|
|
# -d "$PAM_USER from $PAM_RHOST" \
|
|
|
|
# https://ntfy.tigor.web.id/ssh
|
|
|
|
# fi
|
|
|
|
# ''
|
|
|
|
# )
|
|
|
|
# );
|
|
|
|
# };
|
|
|
|
#
|
|
|
|
# security.pam.services.sshd.text = lib.mkDefault (
|
|
|
|
# lib.mkAfter ''
|
|
|
|
# session optional pam_exec.so ${getExe pkgs.bash} ${config.sops.templates."ntfy-ssh-login.sh".path}
|
|
|
|
# ''
|
|
|
|
# );
|
2024-10-11 10:25:10 +07:00
|
|
|
})
|
2024-10-23 23:53:55 +07:00
|
|
|
{
|
|
|
|
profile.services.ntfy-sh.client.settings.subscribe = [
|
|
|
|
{
|
|
|
|
command = ''${pkgs.libnotify}/bin/notify-send --app-name="openssh" --icon="${./ssh-svgrepo-com.svg}" --category=im.received --urgency=normal "$title" "$message"'';
|
|
|
|
topic = "ssh";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2024-10-11 10:25:10 +07:00
|
|
|
]
|