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 /
SessionsBundle /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
SessionTextValues.php
2.19
KB
-rwxrwxr-x
2026-04-02 11:48
SessionUrls.php
2.26
KB
-rwxrwxr-x
2026-05-25 12:28
SessionValues.php
2.11
KB
-rwxrwxr-x
2026-05-25 12:28
Sessions.php
8.42
KB
-rwxrwxr-x
2026-05-25 12:28
Sites.php
6.78
KB
-rwxrwxr-x
2026-05-25 12:28
Save
Rename
<?php namespace App\SessionsBundle\Entity; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * SessionUrls * * @ORM\Table(name="session_urls") * @ORM\Entity(repositoryClass="App\SessionsBundle\Repository\SessionUrlsRepository") * @ORM\HasLifecycleCallbacks */ class SessionUrls { /** * @ORM\Id * @ORM\Column(type="string", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator") */ private $id; /** * @ORM\Column(type="text") */ private $url; /** * @ORM\Column(type="datetime") */ private $created_at; /** * @ORM\ManyToOne(targetEntity="Sessions", inversedBy="session_urls") * @ORM\JoinColumn(name="session_id", referencedColumnName="id") */ private $sessions; /** * Get id * * @return string */ public function getId() { return $this->id; } /** * Set url * * @param string $url * @return SessionUrls */ public function setUrl($url) { $this->url = $url; return $this; } /** * Get url * * @return string */ public function getUrl() { return $this->url; } /** * Set created_at * * @param \DateTime $createdAt * @return SessionUrls */ public function setCreatedAt($createdAt) { $this->created_at = $createdAt; return $this; } /** * Get created_at * * @return \DateTime */ public function getCreatedAt() { return $this->created_at; } /** * Set sessions * * @param \SessionsBundle\Entity\Sessions $sessions * @return SessionUrls */ public function setSessions(\App\SessionsBundle\Entity\Sessions $sessions = null) { $this->sessions = $sessions; return $this; } /** * Get sessions * * @return \SessionsBundle\Entity\Sessions */ public function getSessions() { return $this->sessions; } /** * @ORM\PrePersist */ public function setCreatedAtValue() { if (!$this->getCreatedAt()) { $this->created_at = new \DateTime(); } } }