Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
thunderbird /
[ HOME SHELL ]
Name
Size
Permission
Action
chrome
[ DIR ]
drwxr-xr-x
defaults
[ DIR ]
drwxr-xr-x
dictionaries
[ DIR ]
drwxr-xr-x
distribution
[ DIR ]
drwxr-xr-x
extensions
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
isp
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
searchplugins
[ DIR ]
drwxr-xr-x
application.ini
555
B
-rw-r--r--
crashreporter
1.53
MB
-rwxr-xr-x
dependentlibs.list
189
B
-rw-r--r--
glxtest
26.16
KB
-rwxr-xr-x
libfreeblpriv3.so
926
KB
-rw-r--r--
libgkcodecs.so
9.35
MB
-rw-r--r--
liblgpllibs.so
53.99
KB
-rw-r--r--
libmozavcodec.so
3.99
MB
-rw-r--r--
libmozavutil.so
670.05
KB
-rw-r--r--
libmozgtk.so
13.77
KB
-rw-r--r--
libmozsandbox.so
170.02
KB
-rw-r--r--
libmozsqlite3.so
1.5
MB
-rw-r--r--
libmozwayland.so
17.77
KB
-rw-r--r--
libnspr4.so
236.31
KB
-rw-r--r--
libnss3.so
700.45
KB
-rw-r--r--
libnssckbi.so
578.23
KB
-rw-r--r--
libnssutil3.so
206.15
KB
-rw-r--r--
libplc4.so
21.93
KB
-rw-r--r--
libplds4.so
17.96
KB
-rw-r--r--
librnp.so
2.78
MB
-rw-r--r--
libsmime3.so
165.99
KB
-rw-r--r--
libsoftokn3.so
333.19
KB
-rw-r--r--
libssl3.so
407.2
KB
-rw-r--r--
libxul.so
162.78
MB
-rw-r--r--
omni.ja
79.83
MB
-rw-r--r--
platform.ini
103
B
-rw-r--r--
thunderbird
806.3
KB
-rwxr-xr-x
thunderbird.sh
2.88
KB
-rwxr-xr-x
vaapitest
22.16
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : thunderbird.sh
#!/bin/sh set -e # Firefox launcher containing a Profile migration helper for # temporary profiles used during alpha and beta phases. # Authors: # Alexander Sack <asac@jwsdot.com> # Fabien Tassin <fta@sofaraway.org> # Steve Langasek <steve.langasek@canonical.com> # Chris Coulson <chris.coulson@canonical.com> # License: GPLv2 or later MOZ_LIBDIR=/usr/lib/thunderbird MOZ_APP_LAUNCHER=`which $0` EXE=thunderbird MOZ_APP_NAME=thunderbird export MOZ_APP_LAUNCHER # Enable native Wayland support (https://launchpad.net/bugs/1916469) export MOZ_ENABLE_WAYLAND=1 while [ ! -x $MOZ_LIBDIR/$EXE ] ; do if [ -L "$MOZ_APP_LAUNCHER" ] ; then MOZ_APP_LAUNCHER=`readlink -f $MOZ_APP_LAUNCHER` MOZ_LIBDIR=`dirname $MOZ_APP_LAUNCHER` else echo "Can't find $MOZ_LIBDIR/$EXE" exit 1 fi done # Ensure that external hunspell dictionaries are still loaded # (https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1847247) export DICPATH=$DICPATH:$MOZ_LIBDIR/dictionaries usage () { $MOZ_LIBDIR/$EXE -h | sed -e 's,/.*/,,' echo echo " -g or --debug Start within debugger" echo " -d or --debugger Specify debugger to start with (eg, gdb or valgrind)" echo " -a or --debugger-args Specify arguments for debugger" } moz_debug=0 moz_debugger_args="" moz_debugger="gdb" while [ $# -gt 0 ]; do case "$1" in -h | --help ) usage exit 0 ;; -g | --debug ) moz_debug=1 shift ;; -d | --debugger) moz_debugger=$2; if [ "${moz_debugger}" != "" ]; then shift 2 else echo "-d requires an argument" exit 1 fi ;; -a | --debugger-args ) moz_debugger_args=$2; if [ "${moz_debugger_args}" != "" ] ; then shift 2 else echo "-a requires an argument" exit 1 fi ;; -- ) # Stop option processing shift break ;; * ) break ;; esac done if [ $moz_debug -eq 1 ] ; then case $moz_debugger in memcheck) debugger="valgrind" ;; *) debugger=$moz_debugger ;; esac debugger=`which $debugger` if [ ! -x $debugger ] ; then echo "Invalid debugger" exit 1 fi case `basename $moz_debugger` in gdb) exec $debugger $moz_debugger_args --args $MOZ_LIBDIR/$MOZ_APP_NAME "$@" ;; memcheck) echo "$MOZ_APP_NAME has not been compiled with valgrind support" exit 1 ;; *) exec $debugger $moz_debugger_args $MOZ_LIBDIR/$MOZ_APP_NAME "$@" ;; esac else exec $MOZ_LIBDIR/$EXE "$@" fi
Close