Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.130.122
138 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
cron.daily /
[ HOME SHELL ]
Name
Size
Permission
Action
.placeholder
102
B
-rw-r--r--
apt-compat
1.44
KB
-rwxr-xr-x
bsdmainutils.dpkg-remove
355
B
-rwxr-xr-x
cracklib-runtime
384
B
-rwxr-xr-x
dpkg
123
B
-rwxr-xr-x
imunify-antivirus
1.54
KB
-rwxr-xr-x
logrotate
416
B
-rwxr-xr-x
man-db
1.3
KB
-rwxr-xr-x
popularity-contest
5.5
KB
-rwxr-xr-x
quota
349
B
-rwxr-xr-x
sysstat
518
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : imunify-antivirus
#!/bin/bash # # imunify-antivirus daily cron jobs. # # Usage: # ./imunify-antivirus.cron [<logfile>] # # if logfile is not specified, the output will be discarded # If imunify360-firewall installed, doing nothing log=${1:-/dev/null} main() { /usr/libexec/report-command-error /opt/imunify360/venv/bin/python3 /opt/imunify360/venv/share/imunify360/scripts/delay_on_cron_call.py echo "Checking if imunify360-firewall is installed" if dpkg -s imunify360-firewall; then echo "Imunify360-installed, skipping antivirus cron" exit 0 fi echo "Starting daily imunify-antivirus cron jobs at $(date)" /usr/bin/imunify360-agent check-domains PACKAGES="imunify-antivirus \ ai-bolit \ alt-php-hyperscan \ imunify-common \ imunify-notifier \ imunify-core \ imunify-realtime-av \ imunify-ui \ imunify360-venv \ imunify-patchman \ alt-php-internal \ app-version-detector" /usr/libexec/report-command-error \ apt-get update -y export DEBCONF_NONINTERACTIVE_SEEN=true export DEBIAN_FRONTEND=noninteractive /usr/libexec/report-command-error \ apt-get install --only-upgrade \ -o "Dpkg::Lock::Timeout=600" \ -o "Dpkg::Options::=--force-confdef" \ -o "Dpkg::Options::=--force-confold" \ -y $PACKAGES /usr/bin/imunify-antivirus version echo "Finished daily imunify-antivirus cron jobs at $(date)" } main >> "$log" 2>&1
Close