Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.137.213.94
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
opt /
alt /
tests /
alt-php81-pecl-amqp_2.1.2-1.el8 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
_test_helpers.php.inc
2.19
KB
-rw-r--r--
amqp_version.phpt
485
B
-rw-r--r--
amqpbasicproperties.phpt
3.59
KB
-rw-r--r--
amqpbasicproperties_nullabilit...
1.79
KB
-rw-r--r--
amqpconnection_construct_ini_r...
443
B
-rw-r--r--
amqpconnection_construct_ini_t...
558
B
-rw-r--r--
amqpconnection_construct_ini_t...
743
B
-rw-r--r--
amqpconnection_construct_ini_t...
477
B
-rw-r--r--
amqpconnection_construct_param...
1.02
KB
-rw-r--r--
amqpconnection_construct_with_...
607
B
-rw-r--r--
amqpconnection_construct_with_...
338
B
-rw-r--r--
amqpconnection_construct_with_...
445
B
-rw-r--r--
amqpconnection_construct_with_...
500
B
-rw-r--r--
amqpconnection_construct_with_...
318
B
-rw-r--r--
amqpconnection_construct_with_...
342
B
-rw-r--r--
amqpconnection_nullable_setter...
955
B
-rw-r--r--
amqpconnection_setConnectionNa...
564
B
-rw-r--r--
amqpconnection_setHost.phpt
313
B
-rw-r--r--
amqpconnection_setLogin.phpt
447
B
-rw-r--r--
amqpconnection_setPassword.php...
459
B
-rw-r--r--
amqpconnection_setPort_int.php...
449
B
-rw-r--r--
amqpconnection_setPort_out_of_...
496
B
-rw-r--r--
amqpconnection_setPort_string....
457
B
-rw-r--r--
amqpconnection_setReadTimeout_...
480
B
-rw-r--r--
amqpconnection_setReadTimeout_...
397
B
-rw-r--r--
amqpconnection_setReadTimeout_...
414
B
-rw-r--r--
amqpconnection_setReadTimeout_...
485
B
-rw-r--r--
amqpconnection_setRpcTimeout_f...
583
B
-rw-r--r--
amqpconnection_setRpcTimeout_i...
442
B
-rw-r--r--
amqpconnection_setRpcTimeout_o...
545
B
-rw-r--r--
amqpconnection_setRpcTimeout_s...
598
B
-rw-r--r--
amqpconnection_setSaslMethod.p...
629
B
-rw-r--r--
amqpconnection_setSaslMethod_i...
573
B
-rw-r--r--
amqpconnection_setTimeout_depr...
549
B
-rw-r--r--
amqpconnection_setTimeout_floa...
946
B
-rw-r--r--
amqpconnection_setTimeout_int....
561
B
-rw-r--r--
amqpconnection_setTimeout_out_...
565
B
-rw-r--r--
amqpconnection_setTimeout_stri...
951
B
-rw-r--r--
amqpconnection_setVhost.phpt
443
B
-rw-r--r--
amqpconnection_setWriteTimeout...
485
B
-rw-r--r--
amqpconnection_setWriteTimeout...
400
B
-rw-r--r--
amqpconnection_setWriteTimeout...
551
B
-rw-r--r--
amqpconnection_setWriteTimeout...
491
B
-rw-r--r--
amqpconnection_validation.phpt
5.01
KB
-rw-r--r--
amqpdecimal.phpt
1.28
KB
-rw-r--r--
amqpenvelope_construct.phpt
1.29
KB
-rw-r--r--
amqpexchange_declare_with_stal...
856
B
-rw-r--r--
amqpqueue_declare_with_stalled...
838
B
-rw-r--r--
amqpqueue_purge_basic.phpt
142
B
-rw-r--r--
amqptimestamp.phpt
1.08
KB
-rw-r--r--
bug_62354.phpt
595
B
-rw-r--r--
ini_validation_failure.phpt
4.4
KB
-rw-r--r--
testtest.phpt
1.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : amqpdecimal.phpt
--TEST-- AMQPDecimal --SKIPIF-- <?php if (!extension_loaded("amqp")) print "skip AMQP extension is not loaded"; ?> --FILE-- <?php $decimal = new AMQPDecimal(1, 2); var_dump($decimal->getExponent(), $decimal->getSignificand()); var_dump($decimal === $decimal->toAmqpValue()); var_dump($decimal instanceof AMQPValue); try { new AMQPDecimal(-1, 1); } catch (AMQPValueException $e) { echo $e->getMessage() . "\n"; } try { new AMQPDecimal(1, -1); } catch (AMQPValueException $e) { echo $e->getMessage() . "\n"; } try { new AMQPDecimal(AMQPDecimal::EXPONENT_MAX+1, 1); } catch (AMQPValueException $e) { echo $e->getMessage() . "\n"; } try { new AMQPDecimal(1, AMQPDecimal::SIGNIFICAND_MAX+1); } catch (AMQPValueException $e) { echo $e->getMessage() . "\n"; } var_dump((new ReflectionClass("AMQPDecimal"))->isFinal()); var_dump(AMQPDecimal::EXPONENT_MIN); var_dump(AMQPDecimal::EXPONENT_MAX); var_dump(AMQPDecimal::SIGNIFICAND_MIN); var_dump(AMQPDecimal::SIGNIFICAND_MAX); ?> ==END== --EXPECT-- int(1) int(2) bool(true) bool(true) Decimal exponent value must be unsigned. Decimal significand value must be unsigned. Decimal exponent value must be less than 255. Decimal significand value must be less than 4294967295. bool(true) int(0) int(255) int(0) int(4294967295) ==END==
Close