/etc/kde4/kdm/Xreset is in kdm 4:4.11.13-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #! /bin/sh
# Xreset - run as root after session exits
# Reassign ownership of the console to root, this should disallow
# assignment of console output to any random users's xterm. See Xstartup.
#
#chown root /dev/console
#chmod 622 /dev/console
# XDM configurations typically have sessreg here. KDM has it built-in.
# Use common Xreset framework if it exist
if [ -x /etc/X11/Xreset ] ; then
/etc/X11/Xreset
fi
|