Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
X11 /
Delete
Unzip
Name
Size
Permission
Date
Action
Xreset.d
[ DIR ]
drwxr-xr-x
2025-09-03 03:13
Xresources
[ DIR ]
drwxr-xr-x
2025-09-03 03:13
Xsession.d
[ DIR ]
drwxr-xr-x
2025-09-03 03:13
xkb
[ DIR ]
drwxr-xr-x
2022-04-05 11:22
xorg.conf.d
[ DIR ]
drwxr-xr-x
2021-08-18 11:00
Xreset
709
B
-rwxr-xr-x
2020-10-09 08:13
Xsession
3.83
KB
-rwxr-xr-x
2021-08-18 10:58
Xsession.options
265
B
-rw-r--r--
2020-10-09 08:13
rgb.txt
16.99
KB
-rw-r--r--
2020-10-09 08:13
Save
Rename
#!/bin/sh # # /etc/X11/Xreset # # global Xreset file -- for use by display managers # $Id: Xsession 967 2005-12-27 07:20:55Z dnusinow $ set -e PROGNAME=Xreset SYSSESSIONDIR=/etc/X11/Xreset.d if [ ! -d "$SYSSESSIONDIR" ]; then # Nothing to do, exiting exit 0 fi # use run-parts to source every file in the session directory; we source # instead of executing so that the variables and functions defined above # are available to the scripts, and so that they can pass variables to each # other SESSIONFILES=$(run-parts --list $SYSSESSIONDIR) if [ -n "$SESSIONFILES" ]; then set +e for SESSIONFILE in $SESSIONFILES; do . $SESSIONFILE done set -e fi exit 0 # vim:set ai et sts=2 sw=2 tw=80: