Linux server1.hosting4iran.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.218
Domains : 282 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
cron.daily /
Delete
Unzip
Name
Size
Permission
Date
Action
csget
3.24
KB
-rwx------
2022-02-28 12:44
imunify-antivirus.cron
1.04
KB
-rwxr-xr-x
2023-12-05 14:38
logrotate
228
B
-rwxr-xr-x
2023-12-23 09:40
set-qc-ipv4-ipv6-knownproxies
2.3
KB
-rwx------
2026-01-07 15:56
Save
Rename
#!/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 is installed, doing nothing log=${1:-/dev/null} main() { echo "Checking if imunify360-firewall is installed" if rpm -qi 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-internal \ alt-php-hyperscan \ app-version-detector \ imunify-common \ imunify-notifier \ imunify360-venv \ imunify-core \ imunify-ui" /usr/libexec/report-command-error /usr/bin/yum update --assumeyes $PACKAGES /usr/bin/imunify-antivirus version echo "Finished daily imunify-antivirus cron jobs at $(date)" } main >> "$log" 2>&1