MOON
Server: Apache
System: Linux server1.quantilytics.org 3.10.0-1160.119.1.el7.tuxcare.els21.x86_64 #1 SMP Tue Jun 17 03:11:12 UTC 2025 x86_64
User: hnhtennm (1016)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //etc/cron.daily/cloudlinux-backup-utils
#!/bin/bash

LOG_FILE=${1:-/var/log/cloudlinux-backup-utils-cron.log}

log() {
    echo "$(date -u): ${*}" >>"${LOG_FILE}"
}

refresh_token_if_present() {
    backend=${1}
    token_file=/var/restore_infected/${backend}_api_token.json

    if [ -f "${token_file}" ]; then
        log "${backend}: refreshing auth token"
        out=$(/usr/bin/restore_infected "${backend}" extra refresh_token 2>&1)
        exit_code=$?
        if [ "${exit_code}" != "0" ]; then
            log "${out}"
            log "Token refresh failed"

            echo "${out}"
            echo "Token refresh failed"
            return 1
        fi
        log "Auth token refreshed"
    else
        log "${backend}: not initialized, skipping..."
    fi
}

refresh_token_if_present acronis
refresh_token_if_present r1soft