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; /** * Exception thrown when a not allowed class property is used in a template. * * @author Kit Burton-Senior <mail@kitbs.com> */ final class SecurityNotAllowedPropertyError extends SecurityError { private $className; private $propertyName; public function __construct(string $message, string $className, string $propertyName) { parent::__construct($message); $this->className = $className; $this->propertyName = $propertyName; } public function getClassName(): string { return $this->className; } public function getPropertyName() { return $this->propertyName; } }