📁
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: generate-list.php
<?php /** * Helper file for downloading Public Suffix List and converting it to PHP array * * You can run this script to update PSL to the current version instead of * waiting for a new release of HTTP_Request2. * * NB: peer validation is DISABLED when downloading. If you want to enable it, * change ssl_verify_peer to true and provide CA file (see below) */ /** URL to download Public Suffix List from */ define('LIST_URL', 'https://publicsuffix.org/list/public_suffix_list.dat'); /** Name of PHP file to write */ define('OUTPUT_FILE', __DIR__ . '/public-suffix-list.php'); if (file_exists('../vendor/autoload.php')) { require_once '../vendor/autoload.php'; } else { require_once 'HTTP/Request2.php'; } function buildSubdomain(&$node, $tldParts) { $part = trim(array_pop($tldParts)); if (!array_key_exists($part, $node)) { $node[$part] = []; } if (0 < count($tldParts)) { buildSubdomain($node[$part], $tldParts); } } function writeNode($fp, $valueTree, $key = null, $indent = 0) { if (is_null($key)) { fwrite($fp, "return "); } else { fwrite($fp, str_repeat(' ', $indent) . "'$key' => "); } if (0 == ($count = count($valueTree))) { fwrite($fp, 'true'); } else { fwrite($fp, "[\n"); for ($keys = array_keys($valueTree), $i = 0; $i < $count; $i++) { writeNode($fp, $valueTree[$keys[$i]], $keys[$i], $indent + 1); if ($i + 1 != $count) { fwrite($fp, ",\n"); } else { fwrite($fp, "\n"); } } fwrite($fp, str_repeat(' ', $indent) . "]"); } } try { $request = new HTTP_Request2(LIST_URL, HTTP_Request2::METHOD_GET, [ // Provide path to your CA file and change 'ssl_verify_peer' to true to enable peer validation // 'ssl_cafile' => '... path to your Certificate Authority file ...', 'ssl_verify_peer' => false ]); $response = $request->send(); if (200 != $response->getStatus()) { throw new Exception("List download URL returned status: " . $response->getStatus() . ' ' . $response->getReasonPhrase()); } $list = $response->getBody(); if (false === strpos($list, '// ===BEGIN ICANN DOMAINS===')) { throw new Exception("List download URL does not contain expected phrase"); } if (!($fp = @fopen(OUTPUT_FILE, 'wb'))) { throw new Exception("Unable to open " . OUTPUT_FILE); } } catch (Exception $e) { die($e->getMessage()); } $tldTree = []; $license = true; fwrite($fp, "<?php\n"); foreach (array_filter(array_map('trim', explode("\n", $list))) as $line) { if ('//' != substr($line, 0, 2)) { buildSubdomain($tldTree, explode('.', $line)); } elseif ($license) { if (0 === strpos($line, "// ===BEGIN ICANN DOMAINS===")) { fwrite($fp, "\n"); $license = false; } else { fwrite($fp, $line . "\n"); } } } writeNode($fp, $tldTree); fwrite($fp, ";\n?>"); fclose($fp); ?>
Save