mirror of
https://github.com/kuhyx/scripts.git
synced 2026-07-04 14:23:08 +02:00
26 lines
917 B
Bash
Executable File
26 lines
917 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Enable systemd-resolved
|
|
sudo systemctl enable systemd-resolved
|
|
|
|
# Remove all attributes from /etc/hosts to allow modifications
|
|
sudo chattr -i -a /etc/hosts 2>/dev/null || true
|
|
|
|
# Download the hosts file from StevenBlack's repository
|
|
echo "Downloading hosts file from StevenBlack repository..."
|
|
sudo curl -o /etc/hosts https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts
|
|
|
|
# Set proper permissions (readable by all, writable only by root)
|
|
sudo chmod 644 /etc/hosts
|
|
|
|
# Make the file immutable (prevents deletion, renaming, and most modifications)
|
|
sudo chattr +i /etc/hosts
|
|
|
|
# Also set append-only attribute as additional protection
|
|
# Note: This requires removing immutable first, then setting both
|
|
sudo chattr -i /etc/hosts
|
|
sudo chattr +a /etc/hosts
|
|
|
|
# Flush DNS caches
|
|
sudo systemd-resolve --flush-caches
|
|
sudo systemctl restart NetworkManager.service |