2022-11-20 16:47:54 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-01-25 06:33:56 -05:00
|
|
|
echo 'GSSAPIAuthentication no
|
|
|
|
VerifyHostKeyDNS yes' | sudo tee /etc/ssh/ssh_config.d/10-custom.conf
|
|
|
|
sudo sed -i 's/#GSSAPIAuthentication no/GSSAPIAuthentication no/g' /etc/ssh/sshd_config
|
|
|
|
sudo systemctl restart sshd
|
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
sudo find /etc/apt/sources.list.d -type f -exec sudo sed -i 's/http:/https:/g' {} \;
|
2022-11-20 17:05:22 -05:00
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
sudo apt update
|
|
|
|
sudo apt upgrade -y
|
2023-03-10 23:50:27 -05:00
|
|
|
sudo apt install -y --no-install-recommends tuned unbound ufw
|
2022-11-20 16:47:54 -05:00
|
|
|
|
2023-03-17 13:10:02 -04:00
|
|
|
sudo ufw enable
|
|
|
|
sudo ufw allow 22/tcp
|
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
sudo tuned-adm profile virtual-guest
|
2022-11-20 16:47:54 -05:00
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
echo 'server:
|
|
|
|
trust-anchor-signaling: yes
|
|
|
|
root-key-sentinel: yes
|
2022-11-20 16:47:54 -05:00
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
hide-identity: yes
|
|
|
|
hide-trustanchor: yes
|
|
|
|
hide-version: yes
|
|
|
|
deny-any: yes
|
|
|
|
harden-algo-downgrade: yes
|
|
|
|
harden-large-queries: yes
|
|
|
|
harden-referral-path: yes
|
|
|
|
ignore-cd-flag: yes
|
|
|
|
max-udp-size: 3072
|
|
|
|
module-config: "validator iterator"
|
|
|
|
qname-minimisation-strict: yes
|
|
|
|
unwanted-reply-threshold: 10000000
|
|
|
|
use-caps-for-id: yes
|
2023-01-18 07:11:30 -05:00
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
outgoing-port-permit: 1024-65535
|
|
|
|
|
|
|
|
prefetch: yes
|
|
|
|
prefetch-key: yes
|
|
|
|
|
|
|
|
|
|
|
|
forward-zone:
|
|
|
|
name: "."
|
|
|
|
forward-tls-upstream: yes
|
|
|
|
forward-addr: 8.8.8.8#dns.google
|
|
|
|
forward-addr: 8.8.4.4#dns.google
|
|
|
|
forward-addr: 2001:4860:4860::8888#dns.google
|
|
|
|
forward-addr: 2001:4860:4860::8844#dns.google' | sudo tee /etc/unbound/unbound.conf.d/custom.conf
|
2023-01-25 08:17:29 -05:00
|
|
|
|
|
|
|
mkdir -p /etc/systemd/system/unbound.service.d
|
|
|
|
echo $'[Service]
|
|
|
|
CapabilityBoundingSet=CAP_NET_BIND_SERVICE CAP_SETGID CAP_SETUID CAP_SYS_CHROOT CAP_SYS_RESOURCE CAP_NET_RAW
|
|
|
|
MemoryDenyWriteExecute=true
|
|
|
|
NoNewPrivileges=true
|
|
|
|
PrivateDevices=true
|
|
|
|
PrivateTmp=true
|
|
|
|
ProtectHome=true
|
|
|
|
ProtectClock=true
|
|
|
|
ProtectControlGroups=true
|
|
|
|
ProtectKernelLogs=true
|
|
|
|
ProtectKernelModules=true
|
|
|
|
# This breaks using socket options like \'so-rcvbuf\'. Explicitly disable for visibility.
|
|
|
|
ProtectKernelTunables=false
|
|
|
|
ProtectProc=invisible
|
|
|
|
ProtectSystem=strict
|
|
|
|
RuntimeDirectory=unbound
|
|
|
|
ConfigurationDirectory=unbound
|
|
|
|
StateDirectory=unbound
|
|
|
|
RestrictAddressFamilies=AF_INET AF_INET6 AF_NETLINK AF_UNIX
|
|
|
|
RestrictRealtime=true
|
|
|
|
SystemCallArchitectures=native
|
|
|
|
SystemCallFilter=~@clock @cpu-emulation @debug @keyring @module mount @obsolete @resources
|
|
|
|
RestrictNamespaces=yes
|
|
|
|
LockPersonality=yes
|
|
|
|
RestrictSUIDSGID=yes
|
|
|
|
ReadWritePaths=@UNBOUND_RUN_DIR@ @UNBOUND_CHROOT_DIR@
|
|
|
|
|
|
|
|
# Below rules are needed when chroot is enabled (usually it\'s enabled by default).
|
|
|
|
# If chroot is disabled like chroot: "" then they may be safely removed.
|
|
|
|
TemporaryFileSystem=@UNBOUND_CHROOT_DIR@/dev:ro
|
|
|
|
TemporaryFileSystem=@UNBOUND_CHROOT_DIR@/run:ro
|
|
|
|
BindReadOnlyPaths=-/run/systemd/notify:@UNBOUND_CHROOT_DIR@/run/systemd/notify
|
|
|
|
BindReadOnlyPaths=-/dev/urandom:@UNBOUND_CHROOT_DIR@/dev/urandom
|
|
|
|
BindPaths=-/dev/log:@UNBOUND_CHROOT_DIR@/dev/log' | sudo tee /etc/systemd/system/unbound.service.d/override.conf
|
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
sudo systemctl restart unbound
|
|
|
|
|
2023-01-25 06:33:56 -05:00
|
|
|
sudo mkdir -p /etc/systemd/system/sshd.service.d
|
|
|
|
sudo curl https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/systemd/system/sshd.service.d/limits.conf -o /etc/systemd/system/sshd.service.d/limits.conf
|
|
|
|
|
2023-01-25 05:53:38 -05:00
|
|
|
sudo rm -rf /etc/chrony/chrony.conf
|
|
|
|
sudo curl https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/chrony.conf -o /etc/chrony/chrony.conf
|
|
|
|
sudo systemctl restart chronyd
|
|
|
|
|
|
|
|
sudo curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/etc/modprobe.d/30_security-misc.conf -o /etc/modprobe.d/30_security-misc.conf
|
|
|
|
sudo curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/etc/sysctl.d/30_security-misc.conf -o /etc/sysctl.d/30_security-misc.conf
|
|
|
|
sudo sed -i 's/kernel.yama.ptrace_scope=2/kernel.yama.ptrace_scope=3/g' /etc/sysctl.d/30_security-misc.conf
|
|
|
|
sudo curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/etc/sysctl.d/30_silent-kernel-printk.conf -o /etc/sysctl.d/30_silent-kernel-printk.conf
|
2023-02-04 05:21:33 -05:00
|
|
|
sudo curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/etc/sysctl.d/30_security-misc_kexec-disable.conf -o /etc/sysctl.d/30_security-misc_kexec-disable.conf
|
2023-01-25 05:53:38 -05:00
|
|
|
sudo mkdir -p /etc/systemd/system/NetworkManager.service.d
|
|
|
|
sudo curl https://gitlab.com/divested/brace/-/raw/master/brace/usr/lib/systemd/system/NetworkManager.service.d/99-brace.conf -o /etc/systemd/system/NetworkManager.service.d/99-brace.conf
|
2022-11-20 16:47:54 -05:00
|
|
|
|
|
|
|
echo "* hard core 0" | tee -a /etc/security/limits.conf
|