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 : Set.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 set node. * * @author Fabien Potencier <fabien@symfony.com> */ class Twig_Node_Set extends Twig_Node implements Twig_NodeCaptureInterface { public function __construct($capture, Twig_Node $names, Twig_Node $values, $lineno, $tag = null) { parent::__construct(array('names' => $names, 'values' => $values), array('capture' => $capture, 'safe' => false), $lineno, $tag); /* * Optimizes the node when capture is used for a large block of text. * * {% set foo %}foo{% endset %} is compiled to $context['foo'] = new Twig_Markup("foo"); */ if ($this->getAttribute('capture')) { $this->setAttribute('safe', true); $values = $this->getNode('values'); if ($values instanceof Twig_Node_Text) { $this->setNode('values', new Twig_Node_Expression_Constant($values->getAttribute('data'), $values->getTemplateLine())); $this->setAttribute('capture', false); } } } public function compile(Twig_Compiler $compiler) { $compiler->addDebugInfo($this); if (count($this->getNode('names')) > 1) { $compiler->write('list('); foreach ($this->getNode('names') as $idx => $node) { if ($idx) { $compiler->raw(', '); } $compiler->subcompile($node); } $compiler->raw(')'); } else { if ($this->getAttribute('capture')) { $compiler ->write("ob_start();\n") ->subcompile($this->getNode('values')) ; } $compiler->subcompile($this->getNode('names'), false); if ($this->getAttribute('capture')) { $compiler->raw(" = ('' === \$tmp = ob_get_clean()) ? '' : new Twig_Markup(\$tmp, \$this->env->getCharset())"); } } if (!$this->getAttribute('capture')) { $compiler->raw(' = '); if (count($this->getNode('names')) > 1) { $compiler->write('array('); foreach ($this->getNode('values') as $idx => $value) { if ($idx) { $compiler->raw(', '); } $compiler->subcompile($value); } $compiler->raw(')'); } else { if ($this->getAttribute('safe')) { $compiler ->raw("('' === \$tmp = ") ->subcompile($this->getNode('values')) ->raw(") ? '' : new Twig_Markup(\$tmp, \$this->env->getCharset())") ; } else { $compiler->subcompile($this->getNode('values')); } } } $compiler->raw(";\n"); } }
Close