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.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
zip /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
addglob.php
303
B
-rw-rw-r--
2022-10-31 11:36
addpattern.php
312
B
-rw-rw-r--
2022-10-31 11:36
comment.php
177
B
-rw-rw-r--
2022-10-31 11:36
create.php
706
B
-rw-rw-r--
2022-10-31 11:36
dir.php
492
B
-rw-rw-r--
2022-10-31 11:36
encryption.php
1.06
KB
-rw-rw-r--
2022-10-31 11:36
extract.php
527
B
-rw-rw-r--
2022-10-31 11:36
extractAll.php
466
B
-rw-rw-r--
2022-10-31 11:36
fopen.php
545
B
-rw-rw-r--
2022-10-31 11:36
get_set_comments.php
898
B
-rw-rw-r--
2022-10-31 11:36
im.php
300
B
-rw-rw-r--
2022-10-31 11:36
odt.php
505
B
-rw-rw-r--
2022-10-31 11:36
oldapi.php
420
B
-rw-rw-r--
2022-10-31 11:36
set_compression.php
623
B
-rw-rw-r--
2022-10-31 11:36
test.odt
6.02
KB
-rw-rw-r--
2022-10-31 11:36
test.zip
553
B
-rw-rw-r--
2022-10-31 11:36
test1.zip
681
B
-rw-rw-r--
2022-10-31 11:36
test_im.zip
1.06
KB
-rw-rw-r--
2022-10-31 11:36
test_with_comment.zip
560
B
-rw-rw-r--
2022-10-31 11:36
too.php
18
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
<?php error_reporting(E_ALL); if (!extension_loaded('zip')) { dl('zip.so'); } $thisdir = dirname(__FILE__); unlink("./test112.zip"); $zip = new ZipArchive(); $filename = "./test112.zip"; if (!$zip->open($filename, ZIPARCHIVE::CREATE)) { exit("cannot open <$filename>\n"); } else { echo "file <$filename> OK\n"; } $zip->addFromString("testfilephp.txt" . time(), "#1 This is a test string added as testfilephp.txt.\n"); $zip->addFromString("testfilephp2.txt" . time(), "#2 This is a test string added as testfilephp2.txt.\n"); $zip->addFile($thisdir . "/too.php","/testfromfile.php"); echo "numfiles: " . $zip->numFiles . "\n"; echo "status:" . $zip->status . "\n"; $zip->close(); unset($zip);