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.69.17.27
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 /
scssphp /
Base /
[ HOME SHELL ]
Name
Size
Permission
Action
Range.php
792
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Range.php
<?php /** * SCSSPHP * * @copyright 2015-2019 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Base; /** * Range * * @author Anthon Pang <anthon.pang@gmail.com> */ class Range { public $first; public $last; /** * Initialize range * * @param integer|float $first * @param integer|float $last */ public function __construct($first, $last) { $this->first = $first; $this->last = $last; } /** * Test for inclusion in range * * @param integer|float $value * * @return boolean */ public function includes($value) { return $value >= $this->first && $value <= $this->last; } }
Close