Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.144
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpanel /
ea-tomcat85 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
bootstrap.jar
36.13
KB
-rw-r--r--
2023-12-21 14:02
catalina-tasks.xml
1.63
KB
-rw-r--r--
2023-12-21 14:02
catalina.bat
16.46
KB
-rw-r--r--
2023-12-21 14:02
catalina.sh
24.73
KB
-rwxr-xr-x
2023-12-21 14:02
ciphers.bat
2.07
KB
-rw-r--r--
2023-12-21 14:02
ciphers.sh
1.95
KB
-rwxr-xr-x
2023-12-21 14:02
commons-daemon-native.tar.gz
209.19
KB
-rw-r--r--
2023-12-21 14:02
commons-daemon.jar
25.06
KB
-rw-r--r--
2023-12-21 14:02
configtest.bat
1.99
KB
-rw-r--r--
2023-12-21 14:02
configtest.sh
1.88
KB
-rwxr-xr-x
2023-12-21 14:02
daemon.sh
8.89
KB
-rwxr-xr-x
2023-12-21 14:02
digest.bat
2.04
KB
-rw-r--r--
2023-12-21 14:02
digest.sh
1.92
KB
-rwxr-xr-x
2023-12-21 14:02
setclasspath.bat
3.72
KB
-rw-r--r--
2023-12-21 14:02
setclasspath.sh
4.22
KB
-rwxr-xr-x
2023-12-21 14:02
setenv.sh
143
B
-rwxr-xr-x
2023-12-21 14:02
shutdown.bat
1.97
KB
-rw-r--r--
2023-12-21 14:02
shutdown.sh
1.86
KB
-rwxr-xr-x
2023-12-21 14:02
startup.bat
1.97
KB
-rw-r--r--
2023-12-21 14:02
startup.sh
1.86
KB
-rwxr-xr-x
2023-12-21 14:02
tomcat-juli.jar
52.17
KB
-rw-r--r--
2023-12-21 14:02
tomcat-native.tar.gz
427.94
KB
-rw-r--r--
2023-12-21 14:02
tool-wrapper.bat
4.47
KB
-rw-r--r--
2023-12-21 14:02
tool-wrapper.sh
5.41
KB
-rwxr-xr-x
2023-12-21 14:02
user-functions
18
KB
-rwxr-xr-x
2023-12-21 14:02
user-init.sh
1.58
KB
-rwxr-xr-x
2023-12-21 14:02
user-setenv.sh
139
B
-rwxr-xr-x
2023-12-21 14:02
user-shutdown.sh
65
B
-rwxr-xr-x
2023-12-21 14:02
user-startup.sh
64
B
-rwxr-xr-x
2023-12-21 14:02
version.bat
1.98
KB
-rw-r--r--
2023-12-21 14:02
version.sh
1.86
KB
-rwxr-xr-x
2023-12-21 14:02
Save
Rename
#!/bin/sh # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ----------------------------------------------------------------------------- # Start Script for the CATALINA Server # ----------------------------------------------------------------------------- # Better OS/400 detection: see Bugzilla 31132 os400=false case "`uname`" in OS400*) os400=true;; esac # resolve links - $0 may be a softlink PRG="$0" while [ -h "$PRG" ] ; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then PRG="$link" else PRG=`dirname "$PRG"`/"$link" fi done PRGDIR=`dirname "$PRG"` EXECUTABLE=catalina.sh # Check that target executable exists if $os400; then # -x will Only work on the os400 if the files are: # 1. owned by the user # 2. owned by the PRIMARY group of the user # this will not work if the user belongs in secondary groups eval else if [ ! -x "$PRGDIR"/"$EXECUTABLE" ]; then echo "Cannot find $PRGDIR/$EXECUTABLE" echo "The file is absent or does not have execute permission" echo "This file is needed to run this program" exit 1 fi fi exec "$PRGDIR"/"$EXECUTABLE" start "$@"