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 03:12:08
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/DB/Tree/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/DB/Tree/Node.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\DB\Tree; use Magento\Framework\Exception\LocalizedException; /** * @SuppressWarnings(PHPMD.UnusedPrivateField) * * @deprecated 102.0.0 Not used anymore. */ class Node { /** * @var int */ private $left; /** * @var int */ private $right; /** * @var string|int */ private $id; /** * @var string|int */ private $pid; /** * @var int */ private $level; /** * @var string */ private $title; /** * @var array */ private $data; /** * @var bool * * @deprecated 102.0.0 */ public $hasChild = false; /** * @var float|int * * @deprecated 102.0.0 */ public $numChild = 0; /** * @param array $nodeData * @param array $keys * @throws LocalizedException * * @deprecated 102.0.0 */ public function __construct($nodeData, $keys) { if (empty($nodeData)) { throw new LocalizedException( new \Magento\Framework\Phrase('The node information is empty. Enter the information and try again.') ); } if (empty($keys)) { throw new LocalizedException( new \Magento\Framework\Phrase("The encryption key can't be empty. Enter the key and try again.") ); } $this->id = $nodeData[$keys['id']]; $this->pid = $nodeData[$keys['pid']]; $this->left = $nodeData[$keys['left']]; $this->right = $nodeData[$keys['right']]; $this->level = $nodeData[$keys['level']]; $this->data = $nodeData; $a = $this->right - $this->left; if ($a > 1) { $this->hasChild = true; $this->numChild = ($a - 1) / 2; } return $this; } /** * @param string $name * @return null|array * * @deprecated 102.0.0 */ public function getData($name) { if (isset($this->data[$name])) { return $this->data[$name]; } else { return null; } } /** * @return int * * @deprecated 102.0.0 */ public function getLevel() { return $this->level; } /** * @return int * * @deprecated 102.0.0 */ public function getLeft() { return $this->left; } /** * @return int * * @deprecated 102.0.0 */ public function getRight() { return $this->right; } /** * @return string|int * * @deprecated 102.0.0 */ public function getPid() { return $this->pid; } /** * @return string|int * * @deprecated 102.0.0 */ public function getId() { return $this->id; } /** * Return true if node has child * * @return bool * * @deprecated 102.0.0 */ public function isParent() { if ($this->right - $this->left > 1) { return true; } else { return false; } } }