⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.221
Server IP:
97.74.87.16
Server:
Linux 16.87.74.97.host.secureserver.net 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
etc
/
cron.daily
/
View File Name :
imunify-antivirus.cron
#!/usr/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() { /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 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-hyperscan \ imunify-common \ imunify-notifier \ imunify-core \ imunify-realtime-av \ imunify-ui \ imunify360-venv \ minidaemon \ alt-php-internal \ app-version-detector" /usr/libexec/report-command-error /usr/bin/yum update --assumeyes $PACKAGES # do not try to update the package if it is not installed echo "Checking if imunify-patchman is installed" if rpm -qi imunify-patchman; then # do not update obsoleted packages by default /usr/libexec/report-command-error /usr/bin/yum update --setopt=obsoletes=0 --assumeyes imunify-patchman fi /usr/bin/imunify-antivirus version echo "Finished daily imunify-antivirus cron jobs at $(date)" } main >> "$log" 2>&1