#!/bin/bash # SPDX-Version: 3.0 # SPDX-CreationInfo: 2025-10-11; WEIDNER, Marc S.; # SPDX-ExternalRef: GIT https://git.coresecret.dev/msw/CISS.debian.live.builder.git # SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency # SPDX-FileCopyrightText: 2024-2025; WEIDNER, Marc S.; # SPDX-FileType: SOURCE # SPDX-License-Identifier: LicenseRef-CNCL-1.1 OR LicenseRef-CCLA-1.1 # SPDX-LicenseComment: This file is part of the CISS.debian.installer.secure framework. # SPDX-PackageName: CISS.debian.live.builder # SPDX-Security-Contact: security@coresecret.eu set -Ceuo pipefail printf "\e[95m++++ ++++ ++++ ++++ ++++ ++++ ++ ๐Ÿงช '%s' starting ... \e[0m\n" "${0}" if [[ ! -f /root/.pwd ]]; then printf "\e[93m++++ ++++ ++++ ++++ ++++ ++++ ++ โŒ /root/.pwd NOT found. \e[0m\n" printf "\e[92m++++ ++++ ++++ ++++ ++++ ++++ ++ โŒ Exiting Hook ... \e[0m\n" printf "\e[92m++++ ++++ ++++ ++++ ++++ ++++ ++ โœ… '%s' done. Nothing changed. \e[0m\n" "${0}" exit 0 fi cd /root # shellcheck disable=SC2312 cp /etc/shadow /root/.ciss/cdlb/backup/shadow.bak."$(date +%F_%T)" chmod 0600 /root/.ciss/cdlb/backup/shadow.bak.* declare hashed_pwd declare safe_hashed_pwd IFS= read -r hashed_pwd < /root/.pwd safe_hashed_pwd=$(printf '%s' "${hashed_pwd}" | sed 's/[\/&]/\\&/g') sed -i "s|^root:[^:]*:\(.*\)|root:${safe_hashed_pwd}:\1|" /etc/shadow sed -i "s|^user:[^:]*:\(.*\)|user:${safe_hashed_pwd}:\1|" /etc/shadow unset hashed_pwd safe_hashed_pwd if shred -fzu -n 5 /root/.pwd; then printf "\e[92m++++ ++++ ++++ ++++ ++++ ++++ ++ โœ… Password file /root/.pwd: shred -fzu -n 5 >> done. \e[0m\n" else printf "\e[91m++++ ++++ ++++ ++++ ++++ ++++ ++ โŒ Password file /root/.pwd: shred -fzu -n 5 >> NOT successful. \e[0m\n" >&2 fi printf "\e[92m++++ ++++ ++++ ++++ ++++ ++++ ++ โœ… '%s' applied successfully. \e[0m\n" "${0}" exit 0 # vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh