Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.20.239.211
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
2024-03-28 01:45
Xresources
[ DIR ]
drwxr-xr-x
2024-03-28 01:45
Xsession.d
[ DIR ]
drwxr-xr-x
2025-04-04 06:59
app-defaults
[ DIR ]
drwxr-xr-x
2024-03-28 01:45
xkb
[ DIR ]
drwxr-xr-x
2021-08-18 09:26
Xreset
709
B
-rwxr-xr-x
2020-10-09 08:13
Xsession
4.04
KB
-rwxr-xr-x
2021-10-19 09:04
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: