Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
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 /
rc6.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01cryptdisks
937
B
-rwxr-xr-x
K01cryptdisks-early
896
B
-rwxr-xr-x
K01dovecot
5.12
KB
-rwxr-xr-x
K01irqbalance
2.58
KB
-rwxr-xr-x
K01iscsid
1.47
KB
-rwxr-xr-x
K01lvm2-lvmpolld
586
B
-rwxr-xr-x
K01mariadb
8.48
KB
-rwxr-xr-x
K01networking
4.38
KB
-rwxr-xr-x
K01nghttpx
4.2
KB
-rwxr-xr-x
K01open-iscsi
2.38
KB
-rwxr-xr-x
K01open-vm-tools
1.8
KB
-rwxr-xr-x
K01openbsd-inetd
2.39
KB
-rwxr-xr-x
K01opendkim
3.79
KB
-rwxr-xr-x
K01plymouth
1.35
KB
-rwxr-xr-x
K01postfix
3.02
KB
-rwxr-xr-x
K01pure-ftpd-mysql
3.1
KB
-rwxr-xr-x
K01qemu-guest-agent
3.04
KB
-rwxr-xr-x
K01redis-server
1.58
KB
-rwxr-xr-x
K01udev
6.71
KB
-rwxr-xr-x
K01unattended-upgrades
1.36
KB
-rwxr-xr-x
K01uuidd
1.28
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : K01openbsd-inetd
#!/bin/sh -e ### BEGIN INIT INFO # Provides: openbsd-inetd # Required-Start: $local_fs $remote_fs # Required-Stop: $local_fs $remote_fs # Should-Start: $syslog # Should-Stop: $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start or stop the inetd daemon. ### END INIT INFO DAEMON=/usr/sbin/inetd [ -x $DAEMON -a -e /etc/inetd.conf ] || exit 0 [ -e /etc/default/openbsd-inetd ] && . /etc/default/openbsd-inetd . /lib/lsb/init-functions checkportmap () { if ! grep -v -s "^ *#" /etc/inetd.conf | grep -q -s 'rpc/'; then return 0 fi if [ ! -x /usr/bin/rpcinfo ]; then log_action_msg "WARNING: rpcinfo not available - RPC services may be unavailable!" log_action_msg " (Commenting out the rpc services in inetd.conf will" log_action_msg " disable this message)" elif ! /usr/bin/rpcinfo -u localhost portmapper >/dev/null 2>&1; then log_action_msg "WARNING: portmapper inactive - RPC services unavailable!" log_action_msg " (Commenting out the rpc services in inetd.conf will" log_action_msg " disable this message)" fi } checknoservices () { if ! grep -q "^[[:alnum:][/]" /etc/inetd.conf; then log_action_msg "Not starting internet superserver: no services enabled" exit 0 fi } case "$1" in start) checknoservices checkportmap log_daemon_msg "Starting internet superserver" "inetd" start-stop-daemon --start --quiet --pidfile /var/run/inetd.pid \ --oknodo --exec $DAEMON -- $OPTIONS log_end_msg 0 ;; stop) log_daemon_msg "Stopping internet superserver" "inetd" start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \ --oknodo log_end_msg 0 ;; reload|force-reload) log_daemon_msg "Reloading internet superserver" "inetd" start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \ --oknodo --signal 1 log_end_msg 0 ;; restart) checkportmap log_daemon_msg "Restarting internet superserver" "inetd" start-stop-daemon --stop --quiet --pidfile /var/run/inetd.pid \ --oknodo checknoservices sleep 1 start-stop-daemon --start --quiet --pidfile /var/run/inetd.pid \ --exec $DAEMON -- $OPTIONS log_end_msg 0 ;; status) status_of_proc -p /var/run/inetd.pid $DAEMON inetd && exit 0 || exit $? ;; *) echo "Usage: /etc/init.d/openbsd-inetd {start|stop|reload|force-reload|restart|status}" exit 2 ;; esac exit 0
Close