2022-07-26 18:09:49 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-09-27 03:58:33 -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.
|
|
|
|
|
2022-07-26 18:09:49 -04:00
|
|
|
# Blacklisting kernel modules
|
2023-12-02 01:21:43 -05:00
|
|
|
curl --proxy http://127.0.0.1:8082 https://raw.githubusercontent.com/Kicksecure/security-misc/master/etc/modprobe.d/30_security-misc.conf | sudo tee /etc/modprobe.d/30_security-misc.conf
|
2022-07-26 18:09:49 -04:00
|
|
|
|
|
|
|
# Security kernel settings.
|
2023-12-02 01:21:43 -05:00
|
|
|
curl --proxy http://127.0.0.1:8082 https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/990-security-misc.conf | sudo tee /etc/sysctl.d/990-security-misc.conf
|
2023-11-15 16:21:33 -05:00
|
|
|
sudo sed -i 's/kernel.yama.ptrace_scope=2/kernel.yama.ptrace_scope=3/g' /etc/sysctl.d/990-security-misc.conf
|
2023-12-02 01:21:43 -05:00
|
|
|
curl --proxy http://127.00.1:8082 https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/30_silent-kernel-printk.conf | sudo tee /etc/sysctl.d/30_silent-kernel-printk.conf
|
|
|
|
curl --proxy http://127.00.1:8082 https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/30_security-misc_kexec-disable.conf | sudo tee /etc/sysctl.d/30_security-misc_kexec-disable.conf
|
2023-01-18 08:52:35 -05:00
|
|
|
|
2024-04-26 19:12:38 -04:00
|
|
|
# Setup SSH client
|
2023-01-18 08:52:35 -05:00
|
|
|
echo "GSSAPIAuthentication no" > /etc/ssh/ssh_config.d/10-custom.conf
|
|
|
|
echo "VerifyHostKeyDNS yes" >> /etc/ssh/ssh_config.d/10-custom.conf
|