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 /
Controller /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
CRUDController.php
2.49
KB
-rwxrwxr-x
2026-04-02 12:06
ClientAdminController.php
446
B
-rwxrwxr-x
2026-04-02 12:06
DefaultController.php
13.68
KB
-rwxrwxr-x
2026-04-02 12:06
SecurityController.php
1.33
KB
-rwxrwxr-x
2026-04-02 11:48
UserEMailAddressAdminController.php
467
B
-rwxrwxr-x
2026-04-02 12:06
UserFieldController.php
8.15
KB
-rwxrwxr-x
2026-04-02 12:06
UserGroupController.php
7.45
KB
-rwxrwxr-x
2026-04-02 12:06
UserListAdminController.php
411
B
-rwxrwxr-x
2026-04-02 12:06
UserListController.php
24.12
KB
-rwxrwxr-x
2026-04-02 12:06
UserListFrontendAdminController.php
486
B
-rwxrwxr-x
2026-04-02 12:06
UserTypeTypesAdminController.php
460
B
-rwxrwxr-x
2026-04-02 12:06
UserTypesAdminController.php
451
B
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
4.11
KB
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\UserBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Security\Core\SecurityContext; class SecurityController extends AbstractController { public function loginAction(Request $request) { $session = $request->getSession(); if ($request->attributes->has(SecurityContext::AUTHENTICATION_ERROR)) { $error = $request->attributes->get(SecurityContext::AUTHENTICATION_ERROR); } elseif (null !== $session && $session->has(SecurityContext::AUTHENTICATION_ERROR)) { $error = $session->get(SecurityContext::AUTHENTICATION_ERROR); $session->remove(SecurityContext::AUTHENTICATION_ERROR); } else { $error = ''; } if ($error) { $error = $error->getMessage(); // WARNING! Symfony source code identifies this line as a potential security threat. } $lastUsername = (null === $session) ? '' : $session->get(SecurityContext::LAST_USERNAME); return $this->render( 'UserBundle:Security:login.html.twig', array( 'last_username' => $lastUsername, 'error' => $error, ) ); } public function loginCheckAction(Request $request) {} }