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.188.92.213
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 /
mixchief_app /
templates /
Orders /
[ HOME SHELL ]
Name
Size
Permission
Action
index.html.twig
69
B
-rw-rw-r--
order.html.twig
1.84
KB
-rw-rw-r--
orders.html.twig
870
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : order.html.twig
{% extends 'base1.html.twig' %} {% block content %} <div class="content"> <div class="row"> <div class="col-sm-6"> <div class="card"> <div class="card-header"><h3>Sale Details</h3></div> <div class="card-body"> <table class="table table-striped"> <tr> <td scope="row">Sale ID</td> <td>000{{ order.id }}</td> </tr> <tr> <td scope="row">Date</td> <td>{{ order.date|date('d/m/Y h:i:s A') }}</td> </tr> <tr> <td scope="row">Last Modified</td> <td>{{ order.modified ? order.modified|date('d/m/Y h:i:s A') : '' }}</td> </tr> <tr> <td scope="row">Amount</td> <td>{{ order.amount }}</td> </tr> <tr> <td scope="row">Status</td> <td>{{ order.status }}</td> </tr> <tr> <td scope="row">Payment</td> <td>{{ order.payment }}</td> </tr> </table> <a style="width: 100%" class="btn btn-danger" href="{{ path('deleteorder', {'id': order.id }) }}">Delete Sale</a> </div> </div> </div> <div class="col-sm-6"> <div class="card"> <div class="card-header"> <h3>Sale Items</h3> </div> <div class="card-body"> <table class="table table-striped"> <tr> <th>Name</th> <th>Quantity</th> <th>Price</th> <th class="col-sm-hidden">Discount</th> </tr> {% for item in orderitems %} <tr> <td>{{ item.name }}</td> <td>{{ item.quantity }}</td> <td>{{ item.price }}</td> <td class="col-sm-hidden">{{ item.discount }}</td> </tr> {% endfor %} </table> </div> </div> </div> </div> <a class="btn btn-warning" href="{{ path('orders') }}"> <i class="fa fa-arrow-left"></i> Back to Sales </a> </div> {% endblock %}
Close