Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
vendor /
twig /
twig /
src /
Sandbox /
Delete
Unzip
Name
Size
Permission
Date
Action
SecurityError.php
409
B
-rw-rw-rw-
2023-02-07 22:26
SecurityNotAllowedFilterError.php
707
B
-rw-rw-rw-
2023-02-07 22:26
SecurityNotAllowedFunctionError.php
719
B
-rw-rw-rw-
2023-02-07 22:26
SecurityNotAllowedMethodError.php
868
B
-rw-rw-rw-
2023-02-07 22:26
SecurityNotAllowedPropertyError.php
884
B
-rw-rw-rw-
2023-02-07 22:26
SecurityNotAllowedTagError.php
679
B
-rw-rw-rw-
2023-02-07 22:26
SecurityPolicy.php
3.92
KB
-rw-rw-rw-
2023-02-07 22:26
SecurityPolicyInterface.php
983
B
-rw-rw-rw-
2023-02-07 22:26
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 method is used in a template. * * @author Kit Burton-Senior <mail@kitbs.com> */ final class SecurityNotAllowedMethodError extends SecurityError { private $className; private $methodName; public function __construct(string $message, string $className, string $methodName) { parent::__construct($message); $this->className = $className; $this->methodName = $methodName; } public function getClassName(): string { return $this->className; } public function getMethodName() { return $this->methodName; } }