One Hat Cyber Team
Your IP:
216.73.216.63
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
proc
/
thread-self
/
root
/
proc
/
thread-self
/
cwd
/
Edit File:
3f.tar
3f4f2188e2997ca2a98a611eab5a0b03.php 0000644 00000031767 15112141273 0011641 0 ustar 00 <?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\CoreExtension; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template; /* import/javascript.twig */ class __TwigTemplate_9fc2bb075d537dcea5ea8ec6200cd919 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 yield "\$( function() { "; // line 3 yield " \$(\"#buttonGo\").on(\"click\", function() { "; // line 5 yield " \$(\"#upload_form_form\").css(\"display\", \"none\"); "; // line 7 if ((($context["handler"] ?? null) != "PhpMyAdmin\\Plugins\\Import\\Upload\\UploadNoplugin")) { // line 8 yield " "; // line 9 yield " "; $context["ajax_url"] = (("index.php?route=/import-status&id=" . ($context["upload_id"] ?? null)) . PhpMyAdmin\Url::getCommonRaw(["import_status" => 1], "&")); // line 12 yield " "; $context["promot_str"] = PhpMyAdmin\Sanitize::jsFormat(_gettext("The file being uploaded is probably larger than the maximum allowed size or this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) browsers."), false); // line 13 yield " "; $context["statustext_str"] = PhpMyAdmin\Sanitize::escapeJsString(_gettext("%s of %s")); // line 14 yield " "; $context["second_str"] = PhpMyAdmin\Sanitize::jsFormat(_gettext("%s/sec."), false); // line 15 yield " "; $context["remaining_min"] = PhpMyAdmin\Sanitize::jsFormat(_gettext("About %MIN min. %SEC sec. remaining."), false); // line 16 yield " "; $context["remaining_second"] = PhpMyAdmin\Sanitize::jsFormat(_gettext("About %SEC sec. remaining."), false); // line 17 yield " "; $context["processed_str"] = PhpMyAdmin\Sanitize::jsFormat(_gettext("The file is being processed, please be patient."), false); // line 18 yield " "; $context["import_url"] = PhpMyAdmin\Url::getCommonRaw(["import_status" => 1], "&"); // line 19 yield " "; // line 20 $context["upload_html"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) { // line 21 yield " <div class=\"upload_progress\"> <div class=\"upload_progress_bar_outer\"> <div class=\"percentage\"></div> <div id=\"status\" class=\"upload_progress_bar_inner\"> <div class=\"percentage\"></div> </div> </div> <div> <img src=\""; // line 29 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['PhpMyAdmin\Twig\AssetExtension']->getImagePath("ajax_clock_small.gif"), "html", null, true); yield "\" width=\"16\" height=\"16\" alt=\"ajax clock\"> "; yield PhpMyAdmin\Sanitize::jsFormat(_gettext("Uploading your import fileā¦"), false); // line 30 yield "</div> <div id=\"statustext\"></div> </div> "; return; yield ''; })())) ? '' : new Markup($tmp, $this->env->getCharset()); // line 34 yield " "; // line 36 yield " var finished = false; var percent = 0.0; var total = 0; var complete = 0; var original_title = parent && parent.document ? parent.document.title : false; var import_start; var perform_upload = function () { new \$.getJSON( \""; // line 45 yield ($context["ajax_url"] ?? null); yield "\", {}, function(response) { finished = response.finished; percent = response.percent; total = response.total; complete = response.complete; if (total==0 && complete==0 && percent==0) { \$(\"#upload_form_status_info\").html('<img src=\""; // line 54 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['PhpMyAdmin\Twig\AssetExtension']->getImagePath("ajax_clock_small.gif"), "html", null, true); yield "\" width=\"16\" height=\"16\" alt=\"ajax clock\"> "; yield ($context["promot_str"] ?? null); yield "'); \$(\"#upload_form_status\").css(\"display\", \"none\"); } else { var now = new Date(); now = Date.UTC( now.getFullYear(), now.getMonth(), now.getDate(), now.getHours(), now.getMinutes(), now.getSeconds()) + now.getMilliseconds() - 1000; var statustext = Functions.sprintf( \""; // line 67 yield ($context["statustext_str"] ?? null); yield "\", Functions.formatBytes( complete, 1, Messages.strDecimalSeparator ), Functions.formatBytes( total, 1, Messages.strDecimalSeparator ) ); if (\$(\"#importmain\").is(\":visible\")) { "; // line 78 yield " \$(\"#importmain\").hide(); \$(\"#import_form_status\") .html('"; // line 80 yield ($context["upload_html"] ?? null); yield "') .show(); import_start = now; } else if (percent > 9 || complete > 2000000) { "; // line 86 yield " var used_time = now - import_start; var seconds = parseInt(((total - complete) / complete) * used_time / 1000); var speed = Functions.sprintf( \""; // line 89 yield ($context["second_str"] ?? null); yield "\", Functions.formatBytes(complete / used_time * 1000, 1, Messages.strDecimalSeparator) ); var minutes = parseInt(seconds / 60); seconds %= 60; var estimated_time; if (minutes > 0) { estimated_time = \""; // line 97 yield ($context["remaining_min"] ?? null); yield "\" .replace(\"%MIN\", minutes) .replace(\"%SEC\", seconds); } else { estimated_time = \""; // line 102 yield ($context["remaining_second"] ?? null); yield "\" .replace(\"%SEC\", seconds); } statustext += \"<br>\" + speed + \"<br><br>\" + estimated_time; } var percent_str = Math.round(percent) + \"%\"; \$(\"#status\").animate({width: percent_str}, 150); \$(\".percentage\").text(percent_str); "; // line 114 yield " if (original_title !== false) { parent.document.title = percent_str + \" - \" + original_title; } else { document.title = percent_str + \" - \" + original_title; } \$(\"#statustext\").html(statustext); } if (finished == true) { if (original_title !== false) { parent.document.title = original_title; } else { document.title = original_title; } \$(\"#importmain\").hide(); "; // line 134 yield " \$(\"#import_form_status\") .html('<img src=\""; // line 135 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['PhpMyAdmin\Twig\AssetExtension']->getImagePath("ajax_clock_small.gif"), "html", null, true); yield "\" width=\"16\" height=\"16\" alt=\"ajax clock\"> "; yield ($context["processed_str"] ?? null); yield "') .show(); \$(\"#import_form_status\").load(\"index.php?route=/import-status&message=true&"; // line 137 yield ($context["import_url"] ?? null); yield "\"); Navigation.reload(); "; // line 141 yield " } else { setTimeout(perform_upload, 1000); } }); }; setTimeout(perform_upload, 1000); "; } else { // line 149 yield " "; // line 150 yield " "; $context["image_tag"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) { // line 151 yield "<img src=\""; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['PhpMyAdmin\Twig\AssetExtension']->getImagePath("ajax_clock_small.gif"), "html", null, true); yield "\" width=\"16\" height=\"16\" alt=\"ajax clock\">"; // line 152 yield PhpMyAdmin\Sanitize::jsFormat(_gettext("Please be patient, the file is being uploaded. Details about the upload are not available."), false); // line 153 yield PhpMyAdmin\Html\MySQLDocumentation::showDocumentation("faq", "faq2-9"); return; yield ''; })())) ? '' : new Markup($tmp, $this->env->getCharset()); // line 155 yield " \$('#upload_form_status_info').html('"; yield ($context["image_tag"] ?? null); yield "'); \$(\"#upload_form_status\").css(\"display\", \"none\"); "; } // line 158 yield " }); }); "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "import/javascript.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 278 => 158, 271 => 155, 267 => 153, 265 => 152, 261 => 151, 258 => 150, 256 => 149, 246 => 141, 240 => 137, 233 => 135, 230 => 134, 209 => 114, 195 => 102, 187 => 97, 176 => 89, 171 => 86, 163 => 80, 159 => 78, 146 => 67, 128 => 54, 116 => 45, 105 => 36, 102 => 34, 95 => 30, 91 => 29, 81 => 21, 79 => 20, 76 => 19, 73 => 18, 70 => 17, 67 => 16, 64 => 15, 61 => 14, 58 => 13, 55 => 12, 52 => 9, 50 => 8, 48 => 7, 44 => 5, 41 => 3, 38 => 1,); } public function getSourceContext() { return new Source("", "import/javascript.twig", "/usr/local/cpanel/base/3rdparty/phpMyAdmin/templates/import/javascript.twig"); } } 3f0e7a48ee45098fc1dd0fa7a72e6831.php 0000644 00000031212 15112141273 0011717 0 ustar 00 <?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\CoreExtension; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template; /* database/structure/body_for_table_summary.twig */ class __TwigTemplate_0005ac974929fbee294c8082237533a8 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 yield "<tfoot id=\"tbl_summary_row\"> <tr> <th class=\"d-print-none\"></th> <th class=\"tbl_num text-nowrap\"> "; // line 5 $context["num_tables_trans"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) { yield _ngettext("%s table", "%s tables", abs( // line 6 ($context["num_tables"] ?? null))); return; yield ''; })())) ? '' : new Markup($tmp, $this->env->getCharset()); // line 8 yield " "; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(Twig\Extension\CoreExtension::sprintf(($context["num_tables_trans"] ?? null), PhpMyAdmin\Util::formatNumber(($context["num_tables"] ?? null), 0)), "html", null, true); yield " </th> "; // line 10 if (($context["server_replica_status"] ?? null)) { // line 11 yield " <th>"; yield _gettext("Replication"); yield "</th> "; } // line 13 yield " "; $context["sum_colspan"] = ((($context["db_is_system_schema"] ?? null)) ? (4) : (7)); // line 14 yield " "; if ((($context["num_favorite_tables"] ?? null) == 0)) { // line 15 yield " "; $context["sum_colspan"] = (($context["sum_colspan"] ?? null) - 1); // line 16 yield " "; } // line 17 yield " <th colspan=\""; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["sum_colspan"] ?? null), "html", null, true); yield "\" class=\"d-print-none\">"; yield _gettext("Sum"); yield "</th> "; // line 18 $context["row_count_sum"] = PhpMyAdmin\Util::formatNumber(($context["sum_entries"] ?? null), 0); // line 19 yield " "; // line 20 yield " "; $context["row_sum_url"] = []; // line 21 yield " "; if (array_key_exists("approx_rows", $context)) { // line 22 yield " "; $context["row_sum_url"] = ["ajax_request" => true, "db" => // line 24 ($context["db"] ?? null), "real_row_count_all" => "true"]; // line 27 yield " "; } // line 28 yield " "; if (($context["approx_rows"] ?? null)) { // line 29 yield " "; $context["cell_text"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) { // line 30 yield "<a href=\""; yield PhpMyAdmin\Url::getFromRoute("/database/structure/real-row-count", ($context["row_sum_url"] ?? null)); yield "\" class=\"ajax row_count_sum\">~"; // line 31 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["row_count_sum"] ?? null), "html", null, true); // line 32 yield "</a>"; return; yield ''; })())) ? '' : new Markup($tmp, $this->env->getCharset()); // line 34 yield " "; } else { // line 35 yield " "; $context["cell_text"] = ($context["row_count_sum"] ?? null); // line 36 yield " "; } // line 37 yield " <th class=\"value tbl_rows font-monospace text-end\">"; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["cell_text"] ?? null), "html", null, true); yield "</th> "; // line 38 if ( !(($context["properties_num_columns"] ?? null) > 1)) { // line 39 yield " "; // line 40 yield " "; $context["default_engine"] = CoreExtension::getAttribute($this->env, $this->source, ($context["dbi"] ?? null), "fetchValue", ["SELECT @@storage_engine;"], "method", false, false, false, 40); // line 41 yield " "; if (Twig\Extension\CoreExtension::testEmpty(($context["default_engine"] ?? null))) { // line 42 yield " "; // line 43 yield " "; $context["default_engine"] = CoreExtension::getAttribute($this->env, $this->source, ($context["dbi"] ?? null), "fetchValue", ["SELECT @@default_storage_engine;"], "method", false, false, false, 43); // line 44 yield " "; } // line 45 yield " <th class=\"text-center\"> <dfn title=\""; // line 46 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(Twig\Extension\CoreExtension::sprintf(_gettext("%s is the default storage engine on this MySQL server."), ($context["default_engine"] ?? null)), "html", null, true); yield "\"> "; // line 47 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["default_engine"] ?? null), "html", null, true); yield " </dfn> </th> <th> "; // line 51 if ( !Twig\Extension\CoreExtension::testEmpty(($context["database_collation"] ?? null))) { // line 52 yield " <dfn title=\""; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["database_collation"] ?? null), "description", [], "any", false, false, false, 52), "html", null, true); yield " ("; yield _gettext("Default"); yield ")\"> "; // line 53 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["database_collation"] ?? null), "name", [], "any", false, false, false, 53), "html", null, true); yield " </dfn> "; } // line 56 yield " </th> "; } // line 58 yield " "; // line 59 if (($context["is_show_stats"] ?? null)) { // line 60 yield " "; $context["sum"] = PhpMyAdmin\Util::formatByteDown(($context["sum_size"] ?? null), 3, 1); // line 61 yield " "; $context["sum_formatted"] = (($__internal_compile_0 = ($context["sum"] ?? null)) && is_array($__internal_compile_0) || $__internal_compile_0 instanceof ArrayAccess ? ($__internal_compile_0[0] ?? null) : null); // line 62 yield " "; $context["sum_unit"] = (($__internal_compile_1 = ($context["sum"] ?? null)) && is_array($__internal_compile_1) || $__internal_compile_1 instanceof ArrayAccess ? ($__internal_compile_1[1] ?? null) : null); // line 63 yield " <th class=\"value tbl_size font-monospace text-end\">"; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["sum_formatted"] ?? null), "html", null, true); yield " "; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["sum_unit"] ?? null), "html", null, true); yield "</th> "; // line 65 $context["overhead"] = PhpMyAdmin\Util::formatByteDown(($context["overhead_size"] ?? null), 3, 1); // line 66 yield " "; $context["overhead_formatted"] = (($__internal_compile_2 = ($context["overhead"] ?? null)) && is_array($__internal_compile_2) || $__internal_compile_2 instanceof ArrayAccess ? ($__internal_compile_2[0] ?? null) : null); // line 67 yield " "; $context["overhead_unit"] = (($__internal_compile_3 = ($context["overhead"] ?? null)) && is_array($__internal_compile_3) || $__internal_compile_3 instanceof ArrayAccess ? ($__internal_compile_3[1] ?? null) : null); // line 68 yield " <th class=\"value tbl_overhead font-monospace text-end\">"; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["overhead_formatted"] ?? null), "html", null, true); yield " "; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["overhead_unit"] ?? null), "html", null, true); yield "</th> "; } // line 70 yield " "; // line 71 if (($context["show_charset"] ?? null)) { // line 72 yield " <th>"; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["database_charset"] ?? null), "html", null, true); yield "</th> "; } // line 74 yield " "; if (($context["show_comment"] ?? null)) { // line 75 yield " <th></th> "; } // line 77 yield " "; if (($context["show_creation"] ?? null)) { // line 78 yield " <th class=\"value tbl_creation font-monospace text-end\"> "; // line 79 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["create_time_all"] ?? null), "html", null, true); yield " </th> "; } // line 82 yield " "; if (($context["show_last_update"] ?? null)) { // line 83 yield " <th class=\"value tbl_last_update font-monospace text-end\"> "; // line 84 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["update_time_all"] ?? null), "html", null, true); yield " </th> "; } // line 87 yield " "; if (($context["show_last_check"] ?? null)) { // line 88 yield " <th class=\"value tbl_last_check font-monospace text-end\"> "; // line 89 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["check_time_all"] ?? null), "html", null, true); yield " </th> "; } // line 92 yield "</tr> </tfoot> "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "database/structure/body_for_table_summary.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 273 => 92, 267 => 89, 264 => 88, 261 => 87, 255 => 84, 252 => 83, 249 => 82, 243 => 79, 240 => 78, 237 => 77, 233 => 75, 230 => 74, 224 => 72, 222 => 71, 219 => 70, 211 => 68, 208 => 67, 205 => 66, 203 => 65, 195 => 63, 192 => 62, 189 => 61, 186 => 60, 184 => 59, 181 => 58, 177 => 56, 171 => 53, 164 => 52, 162 => 51, 155 => 47, 151 => 46, 148 => 45, 145 => 44, 142 => 43, 140 => 42, 137 => 41, 134 => 40, 132 => 39, 130 => 38, 125 => 37, 122 => 36, 119 => 35, 116 => 34, 112 => 32, 110 => 31, 106 => 30, 103 => 29, 100 => 28, 97 => 27, 95 => 24, 93 => 22, 90 => 21, 87 => 20, 85 => 19, 83 => 18, 76 => 17, 73 => 16, 70 => 15, 67 => 14, 64 => 13, 58 => 11, 56 => 10, 50 => 8, 46 => 6, 44 => 5, 38 => 1,); } public function getSourceContext() { return new Source("", "database/structure/body_for_table_summary.twig", "/usr/local/cpanel/base/3rdparty/phpMyAdmin/templates/database/structure/body_for_table_summary.twig"); } }
Simpan