1panel更新

国内

# bash <(wget -qO- --no-check-certificate https://fastly.jsdelivr.net/gh/okxlin/ToolScript@main/1Panel/1panel-upgrade/1panel-upgrade.sh)
# bash <(wget -qO- --no-check-certificate https://gcore.jsdelivr.net/gh/okxlin/ToolScript@main/1Panel/1panel-upgrade/1panel-upgrade.sh)
# bash <(wget -qO- --no-check-certificate https://testingcf.jsdelivr.net/gh/okxlin/ToolScript@main/1Panel/1panel-upgrade/1panel-upgrade.sh)
# bash <(wget -qO- --no-check-certificate https://cdn.jsdelivr.net/gh/okxlin/ToolScript@main/1Panel/1panel-upgrade/1panel-upgrade.sh)
bash <(wget -qO- --no-check-certificate https://mirror.ghproxy.com/https://github.com/okxlin/ToolScript/raw/main/1Panel/1panel-upgrade/1panel-upgrade.sh)

国外

bash <(wget -qO- --no-check-certificate https://github.com/okxlin/ToolScript/raw/main/1Panel/1panel-upgrade/1panel-upgrade.sh)

融合怪

curl -L https://github.com/spiritLHLS/ecs/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh

CUPS漏洞修复

# 删除 cups-browsed
if command -v cups-browsed &> /dev/null; then
    echo "正在删除 cups-browsed..."
    sudo apt-get remove --purge cups-browsed -y
else
    echo "cups-browsed 未安装,跳过删除。"
fi

# 关闭 UDP 631 端口
echo "正在关闭 UDP 631 端口..."
sudo iptables -A INPUT -p udp --dport 631 -j DROP
sudo iptables -A OUTPUT -p udp --dport 631 -j DROP

# 阻止 DNS-SD 流量(UDP 5353 端口)
echo "正在阻止 DNS-SD 流量..."
sudo iptables -A INPUT -p udp --dport 5353 -j DROP
sudo iptables -A OUTPUT -p udp --dport 5353 -j DROP

echo "操作完成。"