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 /
init.d /
[ HOME SHELL ]
Name
Size
Permission
Action
apache-htcacheclean
2.43
KB
-rwxr-xr-x
apache2
7.99
KB
-rwxr-xr-x
apparmor
3.65
KB
-rwxr-xr-x
apport
2.85
KB
-rwxr-xr-x
console-setup.sh
1.2
KB
-rwxr-xr-x
cron
2.99
KB
-rwxr-xr-x
cryptdisks
937
B
-rwxr-xr-x
cryptdisks-early
896
B
-rwxr-xr-x
dbus
3.08
KB
-rwxr-xr-x
grub-common
985
B
-rwxr-xr-x
hwclock.sh
1.71
KB
-rwxr-xr-x
irqbalance
2.58
KB
-rwxr-xr-x
iscsid
1.47
KB
-rwxr-xr-x
keyboard-setup.sh
1.44
KB
-rwxr-xr-x
kmod
2
KB
-rwxr-xr-x
krb5-admin-server
3.33
KB
-rwxr-xr-x
krb5-kdc
3.02
KB
-rwxr-xr-x
lvm2
695
B
-rwxr-xr-x
lvm2-lvmpolld
586
B
-rwxr-xr-x
mariadb
6.59
KB
-rwxr-xr-x
multipath-tools
2.76
KB
-rwxr-xr-x
mysql
6.58
KB
-rwxr-xr-x
nginx
4.47
KB
-rwxr-xr-x
nmbd
1.89
KB
-rwxr-xr-x
ntp
1.46
KB
-rwxr-xr-x
open-iscsi
2.38
KB
-rwxr-xr-x
open-vm-tools
1.8
KB
-rwxr-xr-x
plymouth
1.35
KB
-rwxr-xr-x
plymouth-log
760
B
-rwxr-xr-x
postgresql
1.46
KB
-rwxr-xr-x
procps
959
B
-rwxr-xr-x
rsync
4.31
KB
-rwxr-xr-x
samba-ad-dc
2.21
KB
-rwxr-xr-x
screen-cleanup
1.19
KB
-rwxr-xr-x
selinux-autorelabel
2.76
KB
-rwxr-xr-x
smbd
2.01
KB
-rwxr-xr-x
ssh
3.96
KB
-rwxr-xr-x
sssd
2.5
KB
-rwxr-xr-x
sysstat
1.54
KB
-rwxr-xr-x
udev
6.71
KB
-rwxr-xr-x
ufw
2.03
KB
-rwxr-xr-x
unattended-upgrades
1.36
KB
-rwxr-xr-x
uuidd
1.28
KB
-rwxr-xr-x
vsftpd
2.02
KB
-rwxr-xr-x
winbind
1.45
KB
-rwxr-xr-x
x11-common
2.7
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : krb5-admin-server
#! /bin/sh ### BEGIN INIT INFO # Provides: krb5-admin-server # Required-Start: $local_fs $remote_fs $network $syslog # Required-Stop: $local_fs $remote_fs $network $syslog # Should-Start: krb5-kdc # Should-Stop: krb5-kdc # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: MIT Kerberos KDC administrative daemon # Description: Starts, stops, or restarts the MIT Kerberos KDC # administrative daemon (kadmind). This daemon answers # requests from kadmin clients and allows administrators # to create, delete, and modify principals in the KDC # database. ### 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 administrative servers" NAME=kadmind DAEMON=/usr/sbin/$NAME DAEMON_ARGS="" PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/krb5-admin-server DEFAULT=/etc/default/krb5-admin-server # Exit if the package is not installed. [ -x "$DAEMON" ] || exit 0 # Read configuration if it is present. [ -r "$DEFAULT" ] && . "$DEFAULT" # 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() { 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() { 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 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 case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac ;; restart|force-reload) if [ "$RUN_KADMIND" = false ] ; then if [ "$VERBOSE" != no ] ; then log_action_msg "Not restarting $DESC per configuration" fi exit 0 fi log_daemon_msg "Restarting $DESC" "$NAME" do_stop case "$?" in 0|1) do_start case "$?" in 0) [ "$VERBOSE" != no ] && log_end_msg 0 ;; *) [ "$VERBOSE" != no ] && 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