Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
eftec /
bladeone /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
BladeOne.php
119.5
KB
-rw-r--r--
BladeOneCache.php
10.77
KB
-rw-r--r--
BladeOneCacheRedis.php
5.23
KB
-rw-r--r--
BladeOneCustom.php
1.71
KB
-rw-r--r--
BladeOneHtml.php
19.17
KB
-rw-r--r--
BladeOneHtmlBootstrap.php
10.09
KB
-rw-r--r--
BladeOneLang.php
4.11
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : BladeOneCustom.php
<?php /** @noinspection PhpUnused */ namespace eftec\bladeone; /* * Its an example of a custom set of functions for bladeone. * in examples/TestCustom.php there is a working example */ use function array_pop; trait BladeOneCustom { private $customItem = []; // indicates the type of the current tag. such as select/selectgroup/etc. //<editor-fold desc="compile function"> /** * Usage @panel('title',true,true).....@endpanel() * * @param $expression * @return string */ protected function compilePanel($expression) { $this->customItem[] = 'Panel'; return $this->phpTag . "echo \$this->panel{$expression}; ?>"; } protected function compileEndPanel() { $r = @array_pop($this->customItem); if ($r === null) { $this->showError('@endpanel', 'Missing @compilepanel or so many @compilepanel', true); } return ' </div></section><!-- end panel -->'; // we don't need to create a function for this. } //</editor-fold> //<editor-fold desc="used function"> protected function panel($title = '', $toggle = true, $dismiss = true) { return "<section class='panel'> <header class='panel-heading'> <div class='panel-actions'> " . (($toggle) ? "<a href='#' class='panel-action panel-action-toggle' data-panel-toggle></a>" : '') . ' ' . (($dismiss) ? "<a href='#' class='panel-action panel-action-dismiss' data-panel-dismiss></a>" : '') . " </div> <h2 class='panel-title'>$title</h2> </header> <div class='panel-body'>"; } //</editor-fold> }
Close