Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.191.44.145
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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
K01firewalld
2.25
KB
-rwxr-xr-x
README
677
B
-rw-r--r--
S01console-setup.sh
1.2
KB
-rwxr-xr-x
S02php5.6-fpm
4.19
KB
-rwxr-xr-x
S02php7.0-fpm
4.19
KB
-rwxr-xr-x
S02php7.2-fpm
4.19
KB
-rwxr-xr-x
S02php7.3-fpm
4.19
KB
-rwxr-xr-x
S02php7.4-fpm
4.19
KB
-rwxr-xr-x
S02php8.2-fpm
4.19
KB
-rwxr-xr-x
S02rsyslog
2.8
KB
-rwxr-xr-x
S02sudo
1.01
KB
-rwxr-xr-x
S02unattended-upgrades
1.36
KB
-rwxr-xr-x
S03apache2
7.99
KB
-rwxr-xr-x
S04acpid
2.22
KB
-rwxr-xr-x
S04apache-htcacheclean
2.43
KB
-rwxr-xr-x
S04atd
1.05
KB
-rwxr-xr-x
S04cron
2.99
KB
-rwxr-xr-x
S04dbus
2.75
KB
-rwxr-xr-x
S04irqbalance
2.39
KB
-rwxr-xr-x
S04mysql
6.06
KB
-rwxr-xr-x
S04rmnologin
1.01
KB
-rwxr-xr-x
S04rsync
4.31
KB
-rwxr-xr-x
S04ssh
3.85
KB
-rwxr-xr-x
S05exim4
6.99
KB
-rwxr-xr-x
S05saned
2.17
KB
-rwxr-xr-x
S06bootlogs
1.25
KB
-rwxr-xr-x
S07rc.local
820
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S04dbus
#!/bin/sh ### BEGIN INIT INFO # Provides: dbus # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: # Short-Description: D-Bus systemwide message bus # Description: D-Bus is a simple interprocess messaging system, used # for sending messages between applications. ### END INIT INFO # -*- coding: utf-8 -*- # Debian init.d script for D-BUS # Copyright © 2003 Colin Walters <walters@debian.org> # Copyright © 2005 Sjoerd Simons <sjoerd@debian.org> set -e DAEMON=/usr/bin/dbus-daemon UUIDGEN=/usr/bin/dbus-uuidgen UUIDGEN_OPTS=--ensure NAME=dbus DAEMONUSER=messagebus PIDDIR=/var/run/dbus PIDFILE=$PIDDIR/pid DESC="system message bus" test -x $DAEMON || exit 0 . /lib/lsb/init-functions # Source defaults file; edit that file to configure this script. PARAMS="" if [ -e /etc/default/dbus ]; then . /etc/default/dbus fi create_machineid() { # Create machine-id file if [ -x $UUIDGEN ]; then $UUIDGEN $UUIDGEN_OPTS fi } start_it_up() { if [ ! -d $PIDDIR ]; then mkdir -p $PIDDIR chown $DAEMONUSER $PIDDIR chgrp $DAEMONUSER $PIDDIR fi if ! mountpoint -q /proc/ ; then log_failure_msg "Can't start $DESC - /proc is not mounted" return fi if [ -e $PIDFILE ]; then if $0 status > /dev/null ; then log_success_msg "$DESC already started; not starting." return else log_success_msg "Removing stale PID file $PIDFILE." rm -f $PIDFILE fi fi create_machineid log_daemon_msg "Starting $DESC" "$NAME" start-stop-daemon --start --quiet --pidfile $PIDFILE \ --exec $DAEMON -- --system $PARAMS log_end_msg $? } shut_it_down() { log_daemon_msg "Stopping $DESC" "$NAME" start-stop-daemon --stop --retry 5 --quiet --oknodo --pidfile $PIDFILE \ --user $DAEMONUSER # We no longer include these arguments so that start-stop-daemon # can do its job even given that we may have been upgraded. # We rely on the pidfile being sanely managed # --exec $DAEMON -- --system $PARAMS log_end_msg $? rm -f $PIDFILE } reload_it() { create_machineid log_action_begin_msg "Reloading $DESC config" dbus-send --print-reply --system --type=method_call \ --dest=org.freedesktop.DBus \ / org.freedesktop.DBus.ReloadConfig > /dev/null # hopefully this is enough time for dbus to reload it's config file. log_action_end_msg $? } case "$1" in start) start_it_up ;; stop) shut_it_down ;; reload|force-reload) reload_it ;; restart) shut_it_down start_it_up ;; status) status_of_proc -p $PIDFILE $DAEMON $NAME && exit 0 || exit $? ;; *) echo "Usage: /etc/init.d/$NAME {start|stop|reload|restart|force-reload|status}" >&2 exit 2 ;; esac
Close