2022-11-20 16:41:17 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-09-27 03:56:28 -04:00
|
|
|
# Copyright (C) 2023 Thien Tran
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
|
# use this file except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations under
|
|
|
|
# the License.
|
|
|
|
|
2023-03-11 12:53:28 -05:00
|
|
|
# You need to add either the non-subscription repo or the testing repo from the Proxmox WebUI after running this script.
|
|
|
|
|
2023-12-01 21:54:20 -05:00
|
|
|
output(){
|
|
|
|
echo -e '\e[36m'$1'\e[0m';
|
|
|
|
}
|
|
|
|
|
2023-08-16 06:22:28 -04:00
|
|
|
# Setup NTS
|
|
|
|
rm -rf /etc/chrony/chrony.conf
|
|
|
|
curl https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/chrony.conf -o /etc/chrony/chrony.conf
|
|
|
|
systemctl restart chronyd
|
|
|
|
|
|
|
|
# Harden SSH
|
2023-01-25 06:33:56 -05:00
|
|
|
echo 'GSSAPIAuthentication no
|
2023-03-10 13:21:49 -05:00
|
|
|
VerifyHostKeyDNS yes' | tee /etc/ssh/ssh_config.d/10-custom.conf
|
2023-06-25 06:11:43 -04:00
|
|
|
sudo chmod 644 /etc/ssh/ssh_config.d/10-custom.conf
|
2023-12-01 20:59:29 -05:00
|
|
|
echo 'PasswordAuthentication no
|
2023-09-22 18:09:36 -04:00
|
|
|
KerberosAuthentication no
|
|
|
|
GSSAPIAuthentication no' | sudo tee /etc/ssh/sshd_config.d/10-custom.conf
|
|
|
|
sudo chmod 644 /etc/ssh/sshd_config.d/10-custom.conf
|
2023-09-07 18:27:02 -04:00
|
|
|
mkdir -p /etc/systemd/system/ssh.service.d
|
|
|
|
curl https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/systemd/system/sshd.service.d/local.conf -o /etc/systemd/system/ssh.service.d/override.conf
|
2023-08-16 06:22:28 -04:00
|
|
|
systemctl daemon-reload
|
2023-01-25 06:33:56 -05:00
|
|
|
systemctl restart sshd
|
|
|
|
|
2023-08-16 06:22:28 -04:00
|
|
|
# Setup repositories
|
2022-11-20 16:41:17 -05:00
|
|
|
sed -i '1 {s/^/#/}' /etc/apt/sources.list.d/pve-enterprise.list
|
2022-11-20 17:05:22 -05:00
|
|
|
|
2023-08-22 19:54:08 -04:00
|
|
|
echo 'deb https://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware
|
2022-11-20 17:05:22 -05:00
|
|
|
|
2023-08-22 19:54:08 -04:00
|
|
|
deb http://deb.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware
|
2022-11-20 17:05:22 -05:00
|
|
|
|
2023-08-22 19:54:08 -04:00
|
|
|
deb https://deb.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware
|
|
|
|
|
|
|
|
deb https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware
|
2022-11-20 17:05:22 -05:00
|
|
|
|
2023-07-04 09:00:38 -04:00
|
|
|
deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription' | tee /etc/apt/sources.list
|
2022-11-20 17:05:22 -05:00
|
|
|
|
2023-12-01 20:59:29 -05:00
|
|
|
echo 'deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription' | tee /etc/apt/sources.list.d/ceph.list
|
|
|
|
|
2023-08-16 06:22:28 -04:00
|
|
|
# Update and install packages
|
2022-11-20 16:41:17 -05:00
|
|
|
apt update
|
|
|
|
apt upgrade -y
|
2023-03-10 22:27:56 -05:00
|
|
|
apt install -y --no-install-recommends intel-microcode tuned fwupd dropbear-initramfs
|
2022-11-20 16:41:17 -05:00
|
|
|
|
|
|
|
### This part assumes that you are using systemd-boot
|
|
|
|
echo -e "spectre_v2=on spec_store_bypass_disable=on l1tf=full,force mds=full,nosmt tsx=off tsx_async_abort=full,nosmt kvm.nx_huge_pages=force nosmt=force l1d_flush=on mmio_stale_data=full,nosmt random.trust_bootloader=off random.trust_cpu=off intel_iommu=on amd_iommu=on efi=disable_early_pci_dma iommu.passthrough=0 iommu.strict=1 slab_nomerge init_on_alloc=1 init_on_free=1 pti=on vsyscall=none page_alloc.shuffle=1 randomize_kstack_offset=on extra_latent_entropy debugfs=off $(cat /etc/kernel/cmdline)" > /etc/kernel/cmdline
|
|
|
|
proxmox-boot-tool refresh
|
|
|
|
###
|
|
|
|
|
2023-08-16 06:22:28 -04:00
|
|
|
# Kernel hardening
|
2022-11-20 16:41:17 -05:00
|
|
|
curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/etc/modprobe.d/30_security-misc.conf -o /etc/modprobe.d/30_security-misc.conf
|
2023-11-15 16:12:25 -05:00
|
|
|
curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/990-security-misc.conf -o /etc/sysctl.d/990-security-misc.conf
|
|
|
|
sed -i 's/kernel.yama.ptrace_scope=2/kernel.yama.ptrace_scope=3/g' /etc/sysctl.d/990-security-misc.conf
|
|
|
|
sed -i 's/net.ipv4.icmp_echo_ignore_all=1/net.ipv4.icmp_echo_ignore_all=0/g' /etc/sysctl.d/990-security-misc.conf
|
|
|
|
sed -i 's/net.ipv6.icmp.echo_ignore_all=1/net.ipv6.icmp.echo_ignore_all=0/g' /etc/sysctl.d/990-security-misc.conf
|
2023-10-31 12:02:33 -04:00
|
|
|
curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/30_silent-kernel-printk.conf -o /etc/sysctl.d/30_silent-kernel-printk.conf
|
|
|
|
curl https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/30_security-misc_kexec-disable.conf -o /etc/sysctl.d/30_security-misc_kexec-disable.conf
|
2022-12-01 14:59:49 -05:00
|
|
|
mkdir -p /etc/systemd/system/NetworkManager.service.d
|
|
|
|
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:41:17 -05:00
|
|
|
echo "* hard core 0" | tee -a /etc/security/limits.conf
|
|
|
|
|
|
|
|
sed -i 's/#GSSAPIAuthentication no/GSSAPIAuthentication no/g' /etc/ssh/sshd_config
|
|
|
|
|
2023-08-16 06:22:28 -04:00
|
|
|
# Setup automatic updates
|
|
|
|
|
2022-11-20 16:41:17 -05:00
|
|
|
mkdir -p /etc/systemd/system/pve-daily-update.service.d
|
|
|
|
echo '[Service]
|
|
|
|
ExecStart=/usr/bin/pveupgrade' | tee /etc/systemd/system/pve-daily-update.service.d/override.conf
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl enable --now pve-daily-update.timer
|
|
|
|
|
2022-11-23 02:30:59 -05:00
|
|
|
mkdir -p /etc/systemd/system/fwupd-refresh.service.d
|
2022-11-20 16:41:17 -05:00
|
|
|
echo '[Service]
|
2023-07-05 10:39:16 -04:00
|
|
|
ExecStart=/usr/bin/fwupdmgr update' | tee /etc/systemd/system/fwupd-refresh.service.d/override.conf
|
2022-11-20 16:41:17 -05:00
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl enable --now fwupd-refresh.timer
|
|
|
|
|
2023-03-10 13:39:57 -05:00
|
|
|
# Disable Nagging
|
|
|
|
sed -Ezi.bak "s/(Ext.Msg.show\(\{\s+title: gettext\('No valid sub)/void\(\{ \/\/\1/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
|
|
|
|
|
2022-11-20 16:41:17 -05:00
|
|
|
systemctl restart pveproxy.service
|
2023-07-07 05:41:36 -04:00
|
|
|
|
2023-08-16 06:22:28 -04:00
|
|
|
# Setup tuned
|
|
|
|
tuned-adm profile virtual-host
|
|
|
|
|
2023-07-07 05:41:36 -04:00
|
|
|
# Enable fstrim.timer
|
|
|
|
systemctl enable --now fstrim.timer
|