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.129.128.179
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-http /
[ HOME SHELL ]
Name
Size
Permission
Action
Authentication
[ DIR ]
drwxrwxr-x
Authenticator
[ DIR ]
drwxrwxr-x
Authorization
[ DIR ]
drwxrwxr-x
Controller
[ DIR ]
drwxrwxr-x
EntryPoint
[ DIR ]
drwxrwxr-x
Event
[ DIR ]
drwxrwxr-x
EventListener
[ DIR ]
drwxrwxr-x
Firewall
[ DIR ]
drwxrwxr-x
Logout
[ DIR ]
drwxrwxr-x
RememberMe
[ DIR ]
drwxrwxr-x
Session
[ DIR ]
drwxrwxr-x
Util
[ DIR ]
drwxrwxr-x
AccessMap.php
1.33
KB
-rw-rw-r--
AccessMapInterface.php
806
B
-rw-rw-r--
Firewall.php
3.37
KB
-rw-rw-r--
FirewallMap.php
1.35
KB
-rw-rw-r--
FirewallMapInterface.php
1.05
KB
-rw-rw-r--
HttpUtils.php
7.16
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
ParameterBagUtils.php
2.44
KB
-rw-rw-r--
README.md
719
B
-rw-rw-r--
SecurityEvents.php
1.05
KB
-rw-rw-r--
composer.json
1.42
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AccessMap.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\Http; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RequestMatcherInterface; /** * AccessMap allows configuration of different access control rules for * specific parts of the website. * * @author Fabien Potencier <fabien@symfony.com> */ class AccessMap implements AccessMapInterface { private $map = []; /** * @param array $attributes An array of attributes to pass to the access decision manager (like roles) * @param string|null $channel The channel to enforce (http, https, or null) */ public function add(RequestMatcherInterface $requestMatcher, array $attributes = [], string $channel = null) { $this->map[] = [$requestMatcher, $attributes, $channel]; } /** * {@inheritdoc} */ public function getPatterns(Request $request) { foreach ($this->map as $elements) { if (null === $elements[0] || $elements[0]->matches($request)) { return [$elements[1], $elements[2]]; } } return [null, null]; } }
Close