Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
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
server
[ DIR ]
drwxr-xr-x
setup
[ DIR ]
drwxr-xr-x
table
[ DIR ]
drwxr-xr-x
transformations
[ DIR ]
drwxr-xr-x
ajax.js
33.96
KB
-rw-r--r--
chart.js
18.29
KB
-rw-r--r--
common.js
5.14
KB
-rw-r--r--
config.js
25.6
KB
-rw-r--r--
console.js
56.88
KB
-rw-r--r--
cross_framing_protection.js
423
B
-rw-r--r--
doclinks.js
18.54
KB
-rw-r--r--
drag_drop_import.js
14.28
KB
-rw-r--r--
error_report.js
10.34
KB
-rw-r--r--
export.js
34.37
KB
-rw-r--r--
export_output.js
402
B
-rw-r--r--
functions.js
162.86
KB
-rw-r--r--
gis_data_editor.js
14.37
KB
-rw-r--r--
home.js
5.96
KB
-rw-r--r--
import.js
6.02
KB
-rw-r--r--
indexes.js
30.5
KB
-rw-r--r--
jquery.sortable-table.js
11.02
KB
-rw-r--r--
keyhandler.js
2.22
KB
-rw-r--r--
makegrid.js
97.52
KB
-rw-r--r--
menu_resizer.js
6.43
KB
-rw-r--r--
multi_column_sort.js
1.34
KB
-rw-r--r--
name-conflict-fixes.js
44
B
-rw-r--r--
navigation.js
58.82
KB
-rw-r--r--
normalization.js
28.83
KB
-rw-r--r--
ol.mjs
1.03
KB
-rw-r--r--
page_settings.js
2.01
KB
-rw-r--r--
replication.js
3.71
KB
-rw-r--r--
shortcuts_handler.js
3.72
KB
-rw-r--r--
sql.js
39.28
KB
-rw-r--r--
u2f.js
3.39
KB
-rw-r--r--
webauthn.js
4.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : home.js
const GitInfo = { /** * Version string to integer conversion. * @param {string} str * @return {number | false} */ parseVersionString: function (str) { if (typeof(str) !== 'string') { return false; } let add = 0; // Parse possible alpha/beta/rc/ const state = str.split('-'); if (state.length >= 2) { if (state[1].substr(0, 2) === 'rc') { add = - 20 - parseInt(state[1].substr(2), 10); } else if (state[1].substr(0, 4) === 'beta') { add = - 40 - parseInt(state[1].substr(4), 10); } else if (state[1].substr(0, 5) === 'alpha') { add = - 60 - parseInt(state[1].substr(5), 10); } else if (state[1].substr(0, 3) === 'dev') { /* We don't handle dev, it's git snapshot */ add = 0; } } // Parse version const x = str.split('.'); // Use 0 for non existing parts const maj = parseInt(x[0], 10) || 0; const min = parseInt(x[1], 10) || 0; const pat = parseInt(x[2], 10) || 0; const hotfix = parseInt(x[3], 10) || 0; return maj * 100000000 + min * 1000000 + pat * 10000 + hotfix * 100 + add; }, /** * Indicates current available version on main page. * @param {object} data */ currentVersion: function (data) { if (data && data.version && data.date) { const current = GitInfo.parseVersionString($('span.version').text()); const latest = GitInfo.parseVersionString(data.version); const url = './url.php?url=https://www.phpmyadmin.net/files/' + Functions.escapeHtml(encodeURIComponent(data.version)) + '/'; let versionInformationMessage = document.createElement('span'); versionInformationMessage.className = 'latest'; const versionInformationMessageLink = document.createElement('a'); versionInformationMessageLink.href = url; versionInformationMessageLink.className = 'disableAjax'; versionInformationMessageLink.target = '_blank'; versionInformationMessageLink.rel = 'noopener noreferrer'; const versionInformationMessageLinkText = document.createTextNode(data.version); versionInformationMessageLink.appendChild(versionInformationMessageLinkText); const prefixMessage = document.createTextNode(Messages.strLatestAvailable + ' '); versionInformationMessage.appendChild(prefixMessage); versionInformationMessage.appendChild(versionInformationMessageLink); if (latest > current) { const message = Functions.sprintf( Messages.strNewerVersion, Functions.escapeHtml(data.version), Functions.escapeHtml(data.date) ); let htmlClass = 'alert alert-primary'; if (Math.floor(latest / 10000) === Math.floor(current / 10000)) { /* Security update */ htmlClass = 'alert alert-danger'; } $('#newer_version_notice').remove(); const mainContainerDiv = document.createElement('div'); mainContainerDiv.id = 'newer_version_notice'; mainContainerDiv.className = htmlClass; const mainContainerDivLink = document.createElement('a'); mainContainerDivLink.href = url; mainContainerDivLink.className = 'disableAjax'; mainContainerDivLink.target = '_blank'; mainContainerDivLink.rel = 'noopener noreferrer'; const mainContainerDivLinkText = document.createTextNode(message); mainContainerDivLink.appendChild(mainContainerDivLinkText); mainContainerDiv.appendChild(mainContainerDivLink); $('#maincontainer').append($(mainContainerDiv)); } if (latest === current) { versionInformationMessage = document.createTextNode(' (' + Messages.strUpToDate + ')'); } /* Remove extra whitespace */ const versionInfo = $('#li_pma_version').contents().get(2); if (typeof versionInfo !== 'undefined') { versionInfo.textContent = versionInfo.textContent.trim(); } const $liPmaVersion = $('#li_pma_version'); $liPmaVersion.find('span.latest').remove(); $liPmaVersion.append($(versionInformationMessage)); } }, /** * Loads Git revision data from ajax for index.php */ displayGitRevision: function () { $('#is_git_revision').remove(); $('#li_pma_version_git').remove(); $.get( 'index.php?route=/git-revision', { 'server': CommonParams.get('server'), 'ajax_request': true, 'no_debug': true }, function (data) { if (typeof data !== 'undefined' && data.success === true) { $(data.message).insertAfter('#li_pma_version'); } } ); } }; AJAX.registerTeardown('home.js', function () { $('#themesModal').off('show.bs.modal'); }); AJAX.registerOnload('home.js', function () { $('#themesModal').on('show.bs.modal', function () { $.get('index.php?route=/themes', function (data) { $('#themesModal .modal-body').html(data.themes); }); }); /** * Load version information asynchronously. */ if ($('li.jsversioncheck').length > 0) { $.ajax({ dataType: 'json', url: 'index.php?route=/version-check', method: 'POST', data: { 'server': CommonParams.get('server') }, success: GitInfo.currentVersion }); } if ($('#is_git_revision').length > 0) { setTimeout(GitInfo.displayGitRevision, 10); } });
Close