HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //usr/local/CyberCP/public/imunifyav/plib/scripts/send-notifications.php
<?php

use \Imunify360\ImunifyNotificationsBuilder;
use \Imunify360\ImunifyLog;

// Read JSON input from STDIN
$jsonInput   = file_get_contents('php://stdin');
$eventObject = json_decode($jsonInput);

if (!$eventObject || !isset($eventObject->event_id)) {
    ImunifyLog::err('Imunify: send-notifications.php - event_id is not defined');
    exit;
}

ImunifyNotificationsBuilder::dispatch($eventObject);