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 : 23 Aug 2025 16:37:09
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Convert/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Convert/ConvertArray.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Convert; use Magento\Framework\Exception\LocalizedException; /** * Convert the array data to SimpleXMLElement object */ class ConvertArray { /** * Transform an assoc array to \SimpleXMLElement object * Array has some limitations. Appropriate exceptions will be thrown * * @param array $array * @param string $rootName * @return \SimpleXMLElement * @throws LocalizedException */ public function assocToXml(array $array, $rootName = '_') { if (empty($rootName) || is_numeric($rootName)) { throw new LocalizedException( new \Magento\Framework\Phrase( "The root element can't be empty or use numbers. Change the element and try again." ) ); } $xmlStr = <<<XML <?xml version='1.0' encoding='UTF-8' standalone='yes'?> <$rootName></$rootName> XML; $xml = new \SimpleXMLElement($xmlStr); foreach (array_keys($array) as $key) { if (is_numeric($key)) { throw new LocalizedException( new \Magento\Framework\Phrase('An error occurred. Use non-numeric array root keys and try again.') ); } } return self::_assocToXml($array, $rootName, $xml); } /** * Convert nested array into flat array. * * @param array $data * @return array */ public static function toFlatArray($data) { foreach ($data as $key => $value) { if (is_array($value)) { $value = self::toFlatArray($value); unset($data[$key]); $data = array_merge($data, $value); } } return $data; } /** * Function, that actually recursively transforms array to xml * * @param array $array * @param string $rootName * @param \SimpleXMLElement $xml * @return \SimpleXMLElement * @throws LocalizedException */ private function _assocToXml(array $array, $rootName, \SimpleXMLElement $xml) { $hasNumericKey = false; $hasStringKey = false; foreach ($array as $key => $value) { if (!is_array($value)) { if (is_string($key)) { if ($key === $rootName) { throw new LocalizedException( new \Magento\Framework\Phrase( "An associative key can't be the same as its parent associative key. " . "Verify and try again." ) ); } $hasStringKey = true; $xml->addChild($key, $value); } elseif (is_int($key)) { $hasNumericKey = true; $xml->addChild($key, $value); } } else { $xml->addChild($key); self::_assocToXml($value, $key, $xml->{$key}); } } if ($hasNumericKey && $hasStringKey) { throw new LocalizedException( new \Magento\Framework\Phrase( "Associative and numeric keys can't be mixed at one level. Verify and try again." ) ); } return $xml; } }