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.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
UserBundle /
Security /
Delete
Unzip
Name
Size
Permission
Date
Action
Authorization
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Hasher
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
Echasl23UserProvider.php
2.18
KB
-rwxrwxr-x
2026-05-18 12:51
LoginFailureHandler.php
1.79
KB
-rwxrwxr-x
2026-04-02 11:48
LoginSuccessHandler.php
4.79
KB
-rwxrwxr-x
2026-05-20 09:05
LogoutSuccessHandler.php
2.36
KB
-rwxrwxr-x
2026-04-02 12:06
MemberPortalUserProvider.php
2.54
KB
-rwxrwxr-x
2026-05-20 09:05
OAuth2Authenticator.php
5.38
KB
-rwxrwxr-x
2026-04-02 11:48
php_errors.log
1.07
KB
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\UserBundle\Security; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Router; class LoginFailureHandler implements AuthenticationFailureHandlerInterface { /** * Service Container * @var object */ private $container = null; protected $router; protected $security; public function __construct(ContainerInterface $container, Router $router, UsageTrackingTokenStorage $security) { $this->router = $router; $this->security = $security; $this->setContainer($container); } /** * Get Container * * @return ContainerInterface $container */ public function getContainer() { return $this->container; } /** * Set Container * * @param ContainerInterface $container * @return void */ public function setContainer($container) { $this->container = $container; } public function onAuthenticationFailure(Request $request, AuthenticationException $exception): Response { // echo $exception->getMessage() . ' ' . $exception->getTraceAsString(); // exit; $request->getSession()->getFlashBag()->add('error', 'Login failed. Please try again, register, or use our forgot password facility.'); return new RedirectResponse($this->router->generate('login')); } }