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 | : 18.226.214.1
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 : PhpEvaluator.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; use Dompdf\Frame; /** * Executes inline PHP code during the rendering process * * @package dompdf */ class PhpEvaluator { /** * @var Canvas */ protected $_canvas; /** * PhpEvaluator constructor. * @param Canvas $canvas */ public function __construct(Canvas $canvas) { $this->_canvas = $canvas; } /** * @param $code * @param array $vars */ public function evaluate($code, $vars = array()) { if (!$this->_canvas->get_dompdf()->getOptions()->getIsPhpEnabled()) { return; } // Set up some variables for the inline code $pdf = $this->_canvas; $fontMetrics = $pdf->get_dompdf()->getFontMetrics(); $PAGE_NUM = $pdf->get_page_number(); $PAGE_COUNT = $pdf->get_page_count(); // Override those variables if passed in foreach ($vars as $k => $v) { $$k = $v; } eval($code); } /** * @param \Dompdf\Frame $frame */ public function render(Frame $frame) { $this->evaluate($frame->get_node()->nodeValue); } }
Close