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.220.166
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 : bug-88.phpt
--TEST-- Bug https://github.com/scoutapp/scout-apm-php-ext/issues/88 - memory usage should not increase when no instrumentation happens --SKIPIF-- <?php if (!extension_loaded("scoutapm")) die("skip scoutapm extension required."); ?> <?php /* PHP_OS_FAMILY === "Windows" - needs PHP 7.2+ */ if (stripos(PHP_OS, 'Win') === 0) die("skip not for Windows."); ?> --FILE-- <?php class A { function b() {} } $a = new A(); scoutapm_enable_instrumentation(true); $before = (int) (exec("ps --pid " . getmypid() . " --no-headers -o rss")); for ($i = 0; $i <= 10000000; $i++) { $a->b(); } $after = (int) (exec("ps --pid " . getmypid() . " --no-headers -o rss")); echo "Before & after:\n"; var_dump($before, $after); echo "Difference:\n"; var_dump($after - $before); $threshold = 500; // bytes echo "Within $threshold bytes limit:\n"; var_dump(($after - $before) < $threshold); ?> --EXPECTF-- Before & after: int(%d) int(%d) Difference: int(%d) Within %d bytes limit: bool(true)
Close