Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.118.99.234
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
clamav /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
clampipe
833
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : clampipe
#!/usr/bin/perl # Filters mail through clamav. Intended to be used as a maildrop xfilter, # So it takes care to exit 0 on success, and nonzero on error. Adds a # X-Virii-Status header. # Contributed by Joey Hess <joeyh@debian.org> to be used with procmail use strict; use warnings; $/=undef; my $msg=<>; open (CLAM, "| clamscan --quiet -") || die "cannot run clamscan: $!"; # The --mbox support is flakey and requires a From header as in a real # mbox. print CLAM "From foo\n"; print CLAM $msg; close CLAM; # Returns status of 1 for virii. my $status= ($? >> 8 == 1) ? "yes" : "no"; #print STDERR "status: ".($? >> 8)." $!\n"; open (FORMAIL, "|formail -i 'X-Virii-Status: $status'") || die "cannot run formail: $!!"; print FORMAIL $msg || die "cannot write to formail: $!"; close FORMAIL || die "formail failed: $!"; exit 0;
Close