Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.217.26.8
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
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
/
var /
www /
website /
gfgcg /
assets /
scripts /
custom /
[ HOME SHELL ]
Name
Size
Permission
Action
calendar.js
7.07
KB
-rwxr-xr-x
charts.js
29.93
KB
-rwxr-xr-x
coming-soon.js
637
B
-rwxr-xr-x
components-dropdowns.js
9.89
KB
-rwxr-xr-x
components-editors.js
494
B
-rwxr-xr-x
components-form-tools.js
18.13
KB
-rwxr-xr-x
components-ion-sliders.js
2.19
KB
-rwxr-xr-x
components-jqueryui-sliders.js
3.49
KB
-rwxr-xr-x
components-knob-dials.js
523
B
-rwxr-xr-x
components-nouisliders.js
1.69
KB
-rwxr-xr-x
components-pickers.js
7.46
KB
-rwxr-xr-x
contact-us.js
606
B
-rwxr-xr-x
custom.js
521
B
-rwxr-xr-x
ecommerce-index.js
7.64
KB
-rwxr-xr-x
ecommerce-orders-view.js
6.99
KB
-rwxr-xr-x
ecommerce-orders.js
2.64
KB
-rwxr-xr-x
ecommerce-products-edit.js
6.22
KB
-rwxr-xr-x
ecommerce-products.js
2.66
KB
-rwxr-xr-x
form-dropzone.js
1.37
KB
-rwxr-xr-x
form-editable.js
17.65
KB
-rwxr-xr-x
form-fileupload.js
2.6
KB
-rwxr-xr-x
form-image-crop.js
16.13
KB
-rwxr-xr-x
form-samples.js
1.4
KB
-rwxr-xr-x
form-validation.js
11.43
KB
-rwxr-xr-x
form-wizard.js
9.96
KB
-rwxr-xr-x
inbox.js
10.95
KB
-rwxr-xr-x
index.js
31
KB
-rwxr-xr-x
lock.js
376
B
-rwxr-xr-x
login-soft.js
8.62
KB
-rwxr-xr-x
login.js
7.89
KB
-rwxr-xr-x
maps-google.js
5.81
KB
-rwxr-xr-x
maps-vector.js
1.79
KB
-rwxr-xr-x
portfolio.js
181
B
-rwxr-xr-x
portlet-draggable.js
629
B
-rwxr-xr-x
search.js
273
B
-rwxr-xr-x
table-advanced.js
4.36
KB
-rwxr-xr-x
table-ajax.js
3.21
KB
-rwxr-xr-x
table-editable.js
5.91
KB
-rwxr-xr-x
table-managed.js
5.8
KB
-rwxr-xr-x
tasks.js
365
B
-rwxr-xr-x
ui-alert-dialog-api.js
3.17
KB
-rwxr-xr-x
ui-blockui.js
3.66
KB
-rwxr-xr-x
ui-datepaginator.js
774
B
-rwxr-xr-x
ui-extended-modals.js
2.44
KB
-rwxr-xr-x
ui-general.js
6.31
KB
-rwxr-xr-x
ui-idletimeout.js
2.23
KB
-rwxr-xr-x
ui-nestable.js
1.5
KB
-rwxr-xr-x
ui-notific8.js
1.4
KB
-rwxr-xr-x
ui-toastr.js
4.76
KB
-rwxr-xr-x
ui-tree.js
6.13
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : inbox.js
var Inbox = function () { var content = $('#messages .inbox-content'); var loading = $('#messages .inbox-loading'); var sending = $('#messages .sending'); var listListing = ''; var msg_int_code=0; var initWysihtml5 = function () { if (CKEDITOR.instances['inbox_ckeditor']) { CKEDITOR.instances['inbox_ckeditor'].destroy(); } CKEDITOR.replace( 'inbox_ckeditor') ; } var initFileupload = function () { $('#fileupload').fileupload({ // Uncomment the following to send cross-domain cookies: //xhrFields: {withCredentials: true}, url: 'mail_attachments/', autoUpload: true }); // Upload server status check for browsers with CORS support: if ($.support.cors) { $.ajax({ url: 'mail_attachments/', type: 'HEAD' }).fail(function () { $('<span class="alert alert-error"/>') .text('Upload server currently unavailable - ' + new Date()) .appendTo('#fileupload'); }); } } var GetUserLists = function(el,call_type){ $.ajax({ type: "GET", url: $host_url+"GetUserLists", // data: "message_id="+message_id, success: function(responce) { responce = eval('(' + responce + ')'); if (responce.error_code == 0) { $("#inbox #compose_to,#inbox #compose_cc").html(responce.data['users_lists']); $('#inbox #compose_to,#inbox #compose_cc').select2({ placeholder: " ", allowClear: true }); if(call_type=='Replay' || call_type=='Replay_all'|| call_type=='forward') { Inbox.loadReply(el,call_type); } //var ar=new Array();$("#s2id_compose_to div").each(function(){ar.push($(this).text())});ar } } }); } var handleCCInput = function () { var the = $('#inbox .inbox-compose .mail-to .inbox-cc'); var input = $('#inbox .inbox-compose .input-cc'); the.hide(); input.show(); $('#inbox .close', input).click(function () { input.hide(); the.show(); $("#inbox #compose_cc").select2("val",''); }); } var handleBCCInput = function () { var the = $('.inbox-compose .mail-to .inbox-bcc'); var input = $('.inbox-compose .input-bcc'); the.hide(); input.show(); $('.close', input).click(function () { input.hide(); the.show(); }); } var toggleButton = function(el) { if (typeof el == 'undefined') { return; } if (el.attr("disabled")) { el.attr("disabled", false); } else { el.attr("disabled", true); } } return { //main function to initiate the module init: function () { Inbox.loadInbox($(this),'inbox',1); }, HandlePrevPage:function() { var start_lmt=$('#inbox.inbox-content .pagination-control #pgnt_frst_lmt').text(); start_lmt=parseFloat(start_lmt)-10; var type=$('#inbox_head.inbox-header > h1').text(); type=type.toLowerCase(); Inbox.loadInbox($(this), type,start_lmt) }, HandleNextPage:function() { var start_lmt=$('#inbox.inbox-content .pagination-control #pgnt_frst_lmt').text(); start_lmt=parseFloat(start_lmt)+10; var type=$('#inbox_head.inbox-header > h1').text(); type=type.toLowerCase(); Inbox.loadInbox($(this), type,start_lmt); }, loadCompose : function (el,call_type) { var url = 'html_modules/inbox_compose.html'; loading.show(); content.html(''); toggleButton(el); // load the form via ajax $.ajax({ type: "GET", cache: false, url: url, dataType: "html", success: function(res) { toggleButton(el); $('#messages .inbox-nav > li.active').removeClass('active'); $('#inbox_head.inbox-header > h1').text('Compose'); loading.hide(); $('#messages .inbox-content').html(res); $('#messages .inbox-compose').on('click', '.mail-to .inbox-cc', function () { handleCCInput(); }); if(call_type=='Compose') { // initFileupload(); initWysihtml5(); $('#inbox .inbox-wysihtml5').focus(); App.fixContentHeight(); App.initUniform(); } GetUserLists(el,call_type); }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, // async: false }); }, loadInbox : function (el, name,start_limit) { var title = $('#messages .inbox-nav > li.' + name + ' a').attr('data-title'); listListing = "type="+name; listListing += "&start_limit="+start_limit; $('#messages .inbox-loading').show(); $('#messages .inbox-content').html(''); toggleButton(el); $.ajax({ type: "GET", // async:false, url: $host_url+"GetInboxFileName", data: listListing, success: function(responce) { responce = eval('(' + responce + ')'); if (responce.error_code == 0) { toggleButton(el); $('#messages .inbox-nav > li.inbox > a').html("Inbox "+responce.data['mgs_cnt_html']); $('#messages .inbox-nav > li.active').removeClass('active'); $('#messages .inbox-nav > li.' + name).addClass('active'); $('#inbox_head.inbox-header > h1').text(title); $('#messages .inbox-loading').hide(); $('#messages .inbox-content').load(responce.data['message_html']); App.fixContentHeight(); App.initUniform(); } }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, // async: false }); // handle group checkbox: jQuery('body').on('change', '.mail-group-checkbox', function () { var set = jQuery('.mail-checkbox'); var checked = jQuery(this).is(":checked"); jQuery(set).each(function () { $(this).attr("checked", checked); }); jQuery.uniform.update(set); }); }, loadMessage : function (el, message_id, resetMenu) { var view_from=$.trim($("#messages .inbox-header").text()); loading.show(); $('#messages .inbox-content').html(''); toggleButton(el); // var message_id = el.parent('tr').attr("data-messageid"); $.ajax({ type: "GET", url: $host_url+"ViewMessage", data: "message_id="+message_id+"&view_from="+view_from, success: function(responce) { responce = eval('(' + responce + ')'); if (responce.error_code == 0) { toggleButton(el); if (resetMenu) { $('#messages .inbox-nav > li.active').removeClass('active'); } $('#inbox_head.inbox-header > h1').text('View Message'); loading.hide(); $('#messages .inbox-nav > li.inbox > a').html("Inbox "+responce.data['mgs_cnt_html']); msg_int_code=responce.data['msg_int_code']; $('#messages .inbox-content').load(responce.data['message_html'],function(){ App.fixContentHeight(); App.initUniform(); App.init(); }); } }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, async: false }); }, SendMessageDetails : function() { var message = encodeURIComponent(CKEDITOR.instances.inbox_message.getData()); var subject = $("#inbox #subject").val(); var to_arr=$("#inbox #compose_to").select2("val"); var cc_arr=$("#inbox #compose_cc").select2("val"); if(empty(to_arr)) { alert("Please Enter to address"); return false; } if(empty(subject)) { alert("Do you Want to send message without subject"); } $('#messages .sending').show(); $('#messages .inbox-content').html(''); $.ajax({ type: "POST", // async:false, url: $host_url+"SendMessageDetails", data: "to_arr="+to_arr+"&cc_arr="+cc_arr+"&compose_subject="+subject+"&compose_message="+message, success: function(responce) { responce = eval('(' + responce + ')'); if (responce.error_code == 0) { $('#messages .sending').hide(); Inbox.loadInbox($(this), 'inbox',1); alert("Message Sent Sucessfully"); } else { alert("Sending Message failed"); return false; } } }); }, //Handling Multi delete messages deleteMessages : function (){ var msg_ids = $('#inbox .inbox-small-cells input:checkbox:checked').map(function() { return this.id; }).get(); var current_page=$('#inbox_head.inbox-header > h1').text(); if(empty(msg_ids)) { alert("Please Select atlest one Row to delete "); return flase; } $('#messages .delete').show(); $('#messages .inbox-content').html(''); var delete_from=$.trim($("#inbox_head.inbox-header").text()); $.ajax({ type: "POST", url : $host_url+"deleteMessages", data: "msg_ids="+msg_ids+"&delete_from="+delete_from, success : function (responce) { responce = eval('(' + responce + ')'); if (responce.error_code == 0) { $('#messages .delete').hide(); if(current_page=='Inbox') Inbox.loadInbox($(this), 'inbox',1); else Inbox.loadInbox($(this), 'sent',1); alert(responce.data); } } }); }, loadReply : function (el,call_type) { loading.show(); content.html(''); toggleButton(el); // load the form via ajax $.ajax({ type: "GET", cache: false, url: $host_url+"replayMesssage", data: "msg_int_code="+msg_int_code, success: function(responce) { responce = eval('(' + responce + ')'); if (responce.error_code == 0) { toggleButton(el); $('#messages .inbox-nav > li.active').removeClass('active'); loading.hide(); $('[name="message"]').val($('#reply_email_content_body').html()); initWysihtml5(); $('#message').val(responce.data['message']); $('.inbox-wysihtml5').focus(); App.fixContentHeight(); App.initUniform(); if(call_type=='forward') { $('#inbox #subject').val("Fw: "+responce.data['subject']); $('#inbox_head.inbox-header > h1').text('Forward'); } else { $('#inbox #subject').val("Re: "+responce.data['subject']); $('#inbox_head.inbox-header > h1').text('Reply'); } var cc_arr=responce.data['cc_addr_html'].split(","); var to_arr=responce.data['to_addr_html'].split(","); if(call_type=='Replay') { $("#inbox #compose_to").select2("val", to_arr); } if(call_type=='Replay_all') { $("#inbox #compose_to").select2("val", to_arr); $("#inbox #compose_cc").select2("val", cc_arr); handleCCInput(); } // $("#compose_to").select2("val", ["admin", "shafeeq_old", "anusuya", "suhas", "shruthi", "ganesh"]); } }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); } // async: false }); } }; }(); $g_inbox_init=0;
Close