shell bypass 403

Cubjrnet7 Shell

: /lib/dracut/modules.d/99base/ [ drwxr-xr-x ]

name : loginit.sh
#!/usr/bin/sh

# turn off debugging
set +x

QUIET=$1

printf "%s" "$$" > /run/initramfs/loginit.pid

# shellcheck disable=SC2015
[ -e /dev/kmsg ] && exec 5> /dev/kmsg || exec 5> /dev/null
exec 6> /run/initramfs/init.log

while read -r line || [ -n "$line" ]; do
    if [ "$line" = "DRACUT_LOG_END" ]; then
        rm -f -- /run/initramfs/loginit.pipe
        exit 0
    fi
    echo "<31>dracut: $line" >&5
    # if "quiet" is specified we output to /dev/console
    [ -n "$QUIET" ] || echo "dracut: $line"
    echo "$line" >&6
done

© 2025 Cubjrnet7