Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.136.20.167 | Time @ Server : 19 Oct 2024 05:44:06
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/Api/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Api/SearchResults.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Api; /** * SearchResults Service Data Object used for the search service requests * * @SuppressWarnings(PHPMD.NumberOfChildren) */ class SearchResults extends AbstractSimpleObject implements SearchResultsInterface { const KEY_ITEMS = 'items'; const KEY_SEARCH_CRITERIA = 'search_criteria'; const KEY_TOTAL_COUNT = 'total_count'; /** * Get items * * @return \Magento\Framework\Api\AbstractExtensibleObject[] */ public function getItems() { return $this->_get(self::KEY_ITEMS) === null ? [] : $this->_get(self::KEY_ITEMS); } /** * Set items * * @param \Magento\Framework\Api\AbstractExtensibleObject[] $items * @return $this */ public function setItems(array $items) { return $this->setData(self::KEY_ITEMS, $items); } /** * Get search criteria * * @return \Magento\Framework\Api\SearchCriteria */ public function getSearchCriteria() { return $this->_get(self::KEY_SEARCH_CRITERIA); } /** * Set search criteria * * @param SearchCriteriaInterface $searchCriteria * @return $this */ public function setSearchCriteria(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { return $this->setData(self::KEY_SEARCH_CRITERIA, $searchCriteria); } /** * Get total count * * @return int */ public function getTotalCount() { return $this->_get(self::KEY_TOTAL_COUNT); } /** * Set total count * * @param int $count * @return $this */ public function setTotalCount($count) { return $this->setData(self::KEY_TOTAL_COUNT, $count); } }