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 /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
CCEStudent.php
31.3
KB
-rwxrwxr-x
2026-05-25 13:49
UserLevel.php
2.45
KB
-rwxrwxr-x
2026-04-02 11:48
UserList.php
15.2
KB
-rwxrwxr-x
2026-04-02 11:48
UserLogin.php
3.3
KB
-rwxrwxr-x
2026-05-20 09:05
UserOld.php
4.03
KB
-rwxrwxr-x
2026-05-18 12:51
php_errors.log
318
B
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\UserBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface; use Symfony\Component\Security\Core\User\UserInterface; /** * PHPMaker7 admin user (echasl23). * * @ORM\Table(name="echasl23") * @ORM\Entity(repositoryClass="App\UserBundle\Repository\UserOldRepository") */ class UserOld implements UserInterface, PasswordAuthenticatedUserInterface { /** * Plain password for forms; never persisted. */ private ?string $plainPassword = null; /** * Resolved once per request lifecycle. * * @var list<string>|null */ private ?array $roles = null; /** * @ORM\Id * @ORM\Column(name="adminuserid", type="integer") * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @ORM\Column(name="adminusername", type="string", length=255, unique=true) */ private $username; /** * @ORM\Column(name="adminpassword", type="string", length=255) */ private $password; /** * @ORM\Column(name="email", type="string", length=255, nullable=true) */ private $email_address; /** * @ORM\Column(name="level", type="integer", options={"default": 0}) */ private $access_level; /** * @ORM\Column(name="profile", type="text", nullable=true) */ private $profile; /** * @ORM\Column(name="activated", type="boolean") */ private $activated; /** * @ORM\Column(name="pwdchanged", type="datetime", nullable=true) */ private $pwdchanged; public function getId(): ?int { return $this->id; } public function getUsername(): ?string { return $this->username; } public function setUsername(string $username): static { $this->username = $username; return $this; } public function getPassword(): ?string { return $this->password; } public function setPassword(string $password): static { $this->password = $password; return $this; } public function getEmailAddress(): ?string { return $this->email_address; } public function setEmailAddress(?string $email_address): static { $this->email_address = $email_address; return $this; } public function getAccessLevel(): ?int { return $this->access_level; } public function setAccessLevel(int $access_level): static { $this->access_level = $access_level; return $this; } public function getProfile(): ?string { return $this->profile; } public function setProfile(?string $profile): static { $this->profile = $profile; return $this; } public function isActivated(): ?bool { return $this->activated; } public function setActivated(bool $activated): static { $this->activated = $activated; return $this; } public function getPwdchanged(): ?\DateTimeInterface { return $this->pwdchanged; } public function setPwdchanged(?\DateTimeInterface $pwdchanged): static { $this->pwdchanged = $pwdchanged; return $this; } public function getPlainPassword(): ?string { return $this->plainPassword; } public function setPlainPassword(?string $plainPassword): static { $this->plainPassword = $plainPassword; return $this; } public function getUserIdentifier(): string { return (string) $this->username; } /** * @param list<string> $roles */ public function setResolvedRoles(array $roles): void { $this->roles = $roles; } /** * @return list<string> */ public function getRoles(): array { return $this->roles ?? ['NONE']; } public function eraseCredentials(): void { $this->plainPassword = null; } public function __toString(): string { return (string) $this->username; } }