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.119
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 copy('test_with_comment.zip', 't.zip'); $z = new ZipArchive; $z->open('t.zip'); print_r($z); for ($i=0; $i<$z->numFiles; $i++) { echo "index: $i\n"; print_r($z->getCommentIndex($i)); echo "\n\n"; } echo "foobar/ " . $z->getCommentName('foobar/') . "\n"; echo "Archive comment: " . $z->getArchiveComment() . "\n"; $z->setCommentIndex(1, 'new comment idx 1'); $z->setCommentName('foobar/', 'new comment foobar/'); $z->setArchiveComment( 'new archive comment'); for ($i=0; $i<$z->numFiles; $i++) { echo "index: $i\n"; print_r($z->getCommentIndex($i)); echo "\n\n"; } echo $z->getCommentName('foobar/') . "\n"; // Get the original comment echo $z->getCommentName('foobar/', ZIPARCHIVE::FL_UNCHANGED) . "\n"; echo "Archive comment: " . $z->getArchiveComment() . "\n"; echo "Archive comment (original): " . $z->getArchiveComment(ZIPARCHIVE::FL_UNCHANGED) . "\n";