Linux box2263.bluehost.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Apache
: 173.254.88.118 | : 216.73.216.15
Cant Read [ /etc/named.conf ]
8.1.34
studipq1
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 /
rc.d /
rc4.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K50netconsole
4.46
KB
-rwxr-xr-x
S10network
7.74
KB
-rwxr-xr-x
S11filelimits
1.04
KB
-rwxr-xr-x
S20datacycle
1.22
KB
-rwxr-xr-x
S50hgstartprovo
2.15
KB
-rwx------
S75symlinkignoregroup
1.56
KB
-rwx------
S85rbld
1.81
KB
-rwxr-xr-x
S99eigeximlogd
519
B
-rwx------
S99sys-snap
2.42
KB
-rwx------
S99tarpit
570
B
-rwxr-x---
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S85rbld
#!/bin/bash # # rbld Startup script for the RBLD server # # Author: Erick Cantwell <ecantwell@bluehost.com> # # chkconfig: 345 85 15 # description: RBLD is the daemon holding blacklists \ # and whitelists of IP addresses # processname: rbld # Source function library. . /etc/rc.d/init.d/functions if [ -f /etc/sysconfig/rbld ]; then . /etc/sysconfig/rbld fi prog=rbld rbld='/usr/sbin/rbld' pidfile=/var/run/rbld.pid lockfile=/var/lock/subsys/rbld RETVAL=0 start() { echo -n $"Starting $prog: " daemon $rbld $OPTIONS RETVAL=$? echo [ $RETVAL = 0 ] && touch ${lockfile} return $RETVAL } stop() { echo -n $"Stopping $prog: " kill `cat $pidfile` 2>/dev/null RETVAL=$? if [ $RETVAL = 0 ]; then rm -f ${lockfile} success else failure fi echo return $RETVAL } reload() { echo -n $"Reloading $prog: " kill -HUP `cat $pidfile` 2>/dev/null RETVAL=$? if [ $RETVAL = 0 ]; then success else failure fi echo return $RETVAL } status() { if [ ! -f "/var/run/rbld.pid" ]; then failure exit 1 fi MYPID=`/bin/cat /var/run/rbld.pid | /usr/bin/tr -d '\n'` /bin/grep -q 'rbld' /proc/$MYPID/cmdline if [ $? == '0' ]; then success exit 0 else failure exit 1 fi } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart) stop sleep 1 start ;; reload) reload ;; status) status ;; *) echo $"Usage: $prog {start|stop|restart|reload|status}" exit 1 esac exit $RETVAL
Close