Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
js /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
codemirror
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
database
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
designer
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
jqplot
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
server
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
setup
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
table
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
transformations
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
ajax.js
29.25
KB
-rw-r--r--
2023-02-07 21:35
chart.js
16.66
KB
-rw-r--r--
2023-02-07 21:35
common.js
4.42
KB
-rw-r--r--
2023-02-07 21:35
config.js
23.5
KB
-rw-r--r--
2023-02-07 21:35
console.js
48.39
KB
-rw-r--r--
2023-02-07 21:35
cross_framing_protection.js
405
B
-rw-r--r--
2023-02-07 21:35
doclinks.js
17.85
KB
-rw-r--r--
2023-02-07 21:35
drag_drop_import.js
12.14
KB
-rw-r--r--
2023-02-07 21:35
error_report.js
9.05
KB
-rw-r--r--
2023-02-07 21:35
export.js
30.6
KB
-rw-r--r--
2023-02-07 21:35
export_output.js
364
B
-rw-r--r--
2023-02-07 21:35
functions.js
144.6
KB
-rw-r--r--
2023-02-07 21:35
gis_data_editor.js
13.26
KB
-rw-r--r--
2023-02-07 21:35
home.js
5.15
KB
-rw-r--r--
2023-02-07 21:35
import.js
5.5
KB
-rw-r--r--
2023-02-07 21:35
indexes.js
26.33
KB
-rw-r--r--
2023-02-07 21:35
jquery.sortable-table.js
9.27
KB
-rw-r--r--
2023-02-07 21:35
keyhandler.js
2.01
KB
-rw-r--r--
2023-02-07 21:35
makegrid.js
79.11
KB
-rw-r--r--
2023-02-07 21:35
menu_resizer.js
5.59
KB
-rw-r--r--
2023-02-07 21:35
multi_column_sort.js
1.25
KB
-rw-r--r--
2023-02-07 21:35
name-conflict-fixes.js
43
B
-rw-r--r--
2023-02-07 21:35
navigation.js
50.62
KB
-rw-r--r--
2023-02-07 21:35
normalization.js
23.54
KB
-rw-r--r--
2023-02-07 21:35
ol.js
1.41
KB
-rw-r--r--
2023-02-07 21:35
page_settings.js
1.78
KB
-rw-r--r--
2023-02-07 21:35
replication.js
3.46
KB
-rw-r--r--
2023-02-07 21:35
shortcuts_handler.js
3.23
KB
-rw-r--r--
2023-02-07 21:35
sql.js
34.71
KB
-rw-r--r--
2023-02-07 21:35
u2f.js
2.87
KB
-rw-r--r--
2023-02-07 21:35
webauthn.js
3.86
KB
-rw-r--r--
2023-02-07 21:35
Save
Rename
/** * @fileoverview Handle shortcuts in various pages * @name Shortcuts handler * * @requires jQuery * @requires jQueryUI */ /* global Console */ // js/console.js /** * Register key events on load */ $(function () { var databaseOp = false; var tableOp = false; var keyD = 68; var keyT = 84; var keyK = 75; var keyS = 83; var keyF = 70; var keyE = 69; var keyH = 72; var keyC = 67; var keyBackSpace = 8; $(document).on('keyup', function (e) { // is a string but is also a boolean according to https://api.jquery.com/prop/ if ($(e.target).prop('contenteditable') === 'true' || $(e.target).prop('contenteditable') === true) { return; } if (e.target.nodeName === 'INPUT' || e.target.nodeName === 'TEXTAREA' || e.target.nodeName === 'SELECT') { return; } if (e.keyCode === keyD) { setTimeout(function () { databaseOp = false; }, 2000); } else if (e.keyCode === keyT) { setTimeout(function () { tableOp = false; }, 2000); } }); $(document).on('keydown', function (e) { // is a string but is also a boolean according to https://api.jquery.com/prop/ if ($(e.target).prop('contenteditable') === 'true' || $(e.target).prop('contenteditable') === true) { return; } // disable the shortcuts when session has timed out. if ($('#modalOverlay').length > 0) { return; } if (e.ctrlKey && e.altKey && e.keyCode === keyC) { Console.toggle(); } if (e.ctrlKey && e.keyCode === keyK) { e.preventDefault(); Console.toggle(); } if (e.target.nodeName === 'INPUT' || e.target.nodeName === 'TEXTAREA' || e.target.nodeName === 'SELECT') { return; } var isTable; var isDb; if (e.keyCode === keyD) { databaseOp = true; } else if (e.keyCode === keyK) { e.preventDefault(); Console.toggle(); } else if (e.keyCode === keyS) { if (databaseOp === true) { isTable = CommonParams.get('table'); isDb = CommonParams.get('db'); if (isDb && !isTable) { $('.nav-link .ic_b_props').first().trigger('click'); } } else if (tableOp === true) { isTable = CommonParams.get('table'); isDb = CommonParams.get('db'); if (isDb && isTable) { $('.nav-link .ic_b_props').first().trigger('click'); } } else { $('#pma_navigation_settings_icon').trigger('click'); } } else if (e.keyCode === keyF) { if (databaseOp === true) { isTable = CommonParams.get('table'); isDb = CommonParams.get('db'); if (isDb && !isTable) { $('.nav-link .ic_b_search').first().trigger('click'); } } else if (tableOp === true) { isTable = CommonParams.get('table'); isDb = CommonParams.get('db'); if (isDb && isTable) { $('.nav-link .ic_b_search').first().trigger('click'); } } } else if (e.keyCode === keyT) { tableOp = true; } else if (e.keyCode === keyE) { $('.ic_b_export').first().trigger('click'); } else if (e.keyCode === keyBackSpace) { window.history.back(); } else if (e.keyCode === keyH) { $('.ic_b_home').first().trigger('click'); } }); });