Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.17.176.160
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
libraries /
classes /
Display /
Delete
Unzip
Name
Size
Permission
Date
Action
ChangePassword.php
6.84
KB
-rw-r--r--
2021-02-05 18:26
CreateTable.php
1.79
KB
-rw-r--r--
2021-02-05 18:26
Error.php
1.24
KB
-rw-r--r--
2021-02-05 18:26
Export.php
26.46
KB
-rw-r--r--
2021-02-05 18:26
GitRevision.php
4.26
KB
-rw-r--r--
2021-02-05 18:26
Import.php
4.02
KB
-rw-r--r--
2021-02-05 18:26
ImportAjax.php
3.45
KB
-rw-r--r--
2021-02-05 18:26
Results.php
196.99
KB
-rw-r--r--
2021-02-05 18:26
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Displays Error * * @package PhpMyAdmin */ declare(strict_types=1); namespace PhpMyAdmin\Display; use PhpMyAdmin\Sanitize; use PhpMyAdmin\Template; use Throwable; /** * Displays Error * * @package PhpMyAdmin */ class Error { /** * @param Template $template Template object used to render the error * @param string $lang Lang of the HTML page * @param string $dir Direction of text of the HTML page * @param string $errorHeader Error header * @param string $errorMessage Error message * * @return string * @throws Throwable * @throws \Twig\Error\LoaderError * @throws \Twig\Error\RuntimeError * @throws \Twig\Error\SyntaxError */ public static function display( Template $template, string $lang, string $dir, string $errorHeader, string $errorMessage ): string { return $template->render( 'error/generic', [ 'lang' => $lang, 'dir' => $dir, 'error_header' => $errorHeader, 'error_message' => Sanitize::sanitizeMessage($errorMessage), ] ); } }