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.109
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 /
amply /
templates /
Stock /
[ HOME SHELL ]
Name
Size
Permission
Action
add.html.twig
1.26
KB
-rw-rw-r--
editsupply.html.twig
6.25
KB
-rw-rw-r--
googleda794cd9937527d01.html
35
B
-rw-r--r--
index.html.twig
4.75
KB
-rw-rw-r--
itemSupplies.html.twig
2.23
KB
-rw-rw-r--
stocksupplies.html.twig
1.32
KB
-rw-rw-r--
supplier.html.twig
2.94
KB
-rw-rw-r--
supplies.html.twig
1.26
KB
-rw-rw-r--
supply.html.twig
6.3
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : supplies.html.twig
{% extends 'base1.html.twig' %} {% block content %} <div class="content"> <div class="card"> <div class="card-body"> {% if supplier is defined %} <h3>{{ supplier.name }} Supplies <a href="{{ path('supply', {"supplierId": supplier.id}) }}" class="btn btn-primary" style="margin-left: 20px;">New Supply</a></h3> {% else %} <h3>Supplies <a href="{{ path('supply') }}" class="btn btn-primary" style="margin-left: 20px;">New Supply</a></h3> {% endif %} <table class="table table-striped" id="rowSelection"> <thead> <tr> {# <th>Name</th> #} <th>Supplier</th> <th>Total</th> <th>Date</th> </tr> </thead> <tbody> {% for item in supplies %} <tr class="clickable-row" data-href="{{ path('supplyitems', {'id': item.id }) }}" style="cursor: pointer;"> {# <td>{{ item.name }}</td> #} <td>{{ item.supplier.name }}</td> <td>{{ item.total }}</td> <td>{{ item.date|date('d/m/Y H:i:s') }}</td> </tr> {% endfor %} </tbody> </table> {% if supplier is defined %} <a class="btn btn-danger" href="{{ path('deletesupplier', {'id': supplier.id }) }}" id="confirmdelete">Delete Supplier</a> {% endif %} </div> </div> </div> {% endblock %}
Close