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 /
zenit /
media /
com_akeebabackup /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Backup.js
19.14
KB
-rw-r--r--
Backup.min.js
10.47
KB
-rw-r--r--
Browser.js
1017
B
-rw-r--r--
Browser.min.js
639
B
-rw-r--r--
Configuration.js
69.62
KB
-rw-r--r--
Configuration.min.js
23.19
KB
-rw-r--r--
ConfigurationWizard.js
12.74
KB
-rw-r--r--
ConfigurationWizard.min.js
7.08
KB
-rw-r--r--
ControlPanel.js
2.92
KB
-rw-r--r--
ControlPanel.min.js
1.49
KB
-rw-r--r--
DatabaseFilters.js
16.64
KB
-rw-r--r--
DatabaseFilters.min.js
7.92
KB
-rw-r--r--
Discover.js
613
B
-rw-r--r--
Discover.min.js
326
B
-rw-r--r--
FileFilters.js
31.22
KB
-rw-r--r--
FileFilters.min.js
14.18
KB
-rw-r--r--
IncludeFolders.js
13.03
KB
-rw-r--r--
IncludeFolders.min.js
6.27
KB
-rw-r--r--
Log.js
1.06
KB
-rw-r--r--
Log.min.js
702
B
-rw-r--r--
Manage.js
5.55
KB
-rw-r--r--
Manage.min.js
3.39
KB
-rw-r--r--
MultipleDatabases.js
16.73
KB
-rw-r--r--
MultipleDatabases.min.js
8.12
KB
-rw-r--r--
RegExDatabaseFilters.js
10.97
KB
-rw-r--r--
RegExDatabaseFilters.min.js
5.44
KB
-rw-r--r--
RegExFileFilters.js
11.21
KB
-rw-r--r--
RegExFileFilters.min.js
5.62
KB
-rw-r--r--
RemoteFiles.js
1.75
KB
-rw-r--r--
RemoteFiles.min.js
876
B
-rw-r--r--
Restore.js
14.35
KB
-rw-r--r--
Restore.min.js
6.26
KB
-rw-r--r--
S3Import.js
2.9
KB
-rw-r--r--
S3Import.min.js
1.69
KB
-rw-r--r--
System.js
43.68
KB
-rw-r--r--
System.min.js
10.63
KB
-rw-r--r--
Transfer.js
18.97
KB
-rw-r--r--
Transfer.min.js
12.98
KB
-rw-r--r--
Upload.js
1.1
KB
-rw-r--r--
Upload.min.js
561
B
-rw-r--r--
piecon.js
5.7
KB
-rw-r--r--
piecon.min.js
2.31
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ConfigurationWizard.js
/*! * @package akeebabackup * @copyright Copyright (c)2006-2021 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ "use strict"; // Object initialisation if (typeof akeebabackup == "undefined") { var akeebabackup = {}; } if (typeof akeebabackup.Wizard == "undefined") { akeebabackup.Wizard = { URLs: {}, execTimes: [30, 25, 20, 14, 7, 5, 3], blockSizes: [240, 200, 160, 80, 40, 16, 4, 2, 1], translation: {} } } /** * Boot up the Configuration Wizard benchmarking process */ akeebabackup.Wizard.boot = function () { akeebabackup.Wizard.execTimes = [30, 25, 20, 14, 7, 5, 3]; akeebabackup.Wizard.blockSizes = [480, 400, 240, 200, 160, 80, 40, 16, 4, 2, 1]; // Show GUI document.getElementById("backup-progress-pane").style.display = "block"; akeebabackup.Backup.resetTimeoutBar(); // Before continuing, perform a call to the ping method, so Akeeba Backup knowns that it was configured akeebabackup.System.doAjax( { act: "ping" }, function () { akeebabackup.Wizard.minExec(); }, function () { }, false, 10000 ); }; /** * Determine the optimal Minimum Execution Time * * @param seconds How many seconds to test * @param repetition Which try is this? */ akeebabackup.Wizard.minExec = function (seconds, repetition) { if (seconds == null) { seconds = 0; } if (repetition == null) { repetition = 0; } akeebabackup.Backup.resetTimeoutBar(); akeebabackup.Backup.startTimeoutBar((2 * seconds + 5) * 1000, 100); document.getElementById("backup-substep").textContent = Joomla.Text._('COM_AKEEBABACKUP_CONFWIZ_UI_MINEXECTRY').replace("%s", seconds.toFixed(1)); var stepElement = document.getElementById("step-minexec"); stepElement.classList.remove('bg-light'); stepElement.classList.add('bg-primary', 'text-white'); akeebabackup.System.doAjax( {act: "minexec", "seconds": seconds}, function (msg) { // The ping was successful. Add a repetition count. repetition++; if (repetition < 3) { // We need more repetitions akeebabackup.Wizard.minExec(seconds, repetition); } else { // Three repetitions reached. Success! akeebabackup.Wizard.minExecApply(seconds); } }, function () { // We got a failure. Add half a second seconds += 0.5; if (seconds > 20) { // Uh-oh... We exceeded our maximum allowance! document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTDETERMINEMINEXEC"); } else { akeebabackup.Wizard.minExec(seconds, 0); } }, false, (2 * seconds + 5) * 1000 ); }; /** * Applies the AJAX preference and the minimum execution time determined in the previous steps * * @param seconds The minimum execution time, in seconds */ akeebabackup.Wizard.minExecApply = function (seconds) { akeebabackup.Backup.resetTimeoutBar(); akeebabackup.Backup.startTimeoutBar(25000, 100); document.getElementById("backup-substep").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_SAVEMINEXEC"); akeebabackup.System.doAjax( {act: "applyminexec", "minexec": seconds}, function (msg) { var stepElement = document.getElementById("step-minexec"); stepElement.classList.remove('bg-primary'); stepElement.classList.add('bg-success'); akeebabackup.Wizard.directories(); }, function () { // Unsuccessful call. Oops! document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTSAVEMINEXEC"); }, false ); }; /** * Automatically determine the optimal output and temporary directories, * then make sure they are writable */ akeebabackup.Wizard.directories = function () { akeebabackup.Backup.resetTimeoutBar(); akeebabackup.Backup.startTimeoutBar(10000, 100); document.getElementById("backup-substep").innerHTML = ""; var stepElement = document.getElementById("step-directory"); stepElement.classList.remove('bg-light'); stepElement.classList.add('bg-primary', 'text-white'); akeebabackup.System.doAjax( {act: "directories"}, function (msg) { if (msg) { var stepElement = document.getElementById("step-directory"); stepElement.classList.remove('bg-primary'); stepElement.classList.add('bg-success'); akeebabackup.Wizard.database(); } else { document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTFIXDIRECTORIES"); } }, function () { document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTFIXDIRECTORIES"); }, false ); }; /** * Determine the optimal database dump options, analyzing the site's database */ akeebabackup.Wizard.database = function () { akeebabackup.Backup.resetTimeoutBar(); akeebabackup.Backup.startTimeoutBar(30000, 50); document.getElementById("backup-substep").innerHTML = ""; var stepElement = document.getElementById("step-dbopt"); stepElement.classList.remove('bg-light'); stepElement.classList.add('bg-primary', 'text-white'); akeebabackup.System.doAjax( {act: "database"}, function (msg) { if (msg) { var stepElement = document.getElementById("step-dbopt"); stepElement.classList.remove('bg-primary'); stepElement.classList.add('bg-success'); akeebabackup.Wizard.maxExec(); } else { document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTDBOPT"); } }, function () { document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTDBOPT"); }, false ); }; /** * Determine the optimal maximum execution time which doesn't cause a timeout or server error */ akeebabackup.Wizard.maxExec = function () { var exec_time = akeebabackup.Wizard.execTimes.shift(); if ((akeebabackup.Wizard.execTimes.length === 0) || (exec_time == null)) { // Darn, we ran out of options document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_EXECTOOLOW"); return; } akeebabackup.Backup.resetTimeoutBar(); akeebabackup.Backup.startTimeoutBar((exec_time * 1.2) * 1000, 80); var stepElement = document.getElementById("step-maxexec"); stepElement.classList.remove('bg-light'); stepElement.classList.add('bg-primary', 'text-white'); document.getElementById("backup-substep").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_MINEXECTRY").replace("%s", exec_time.toFixed(0)); akeebabackup.System.doAjax( {act: "maxexec", "seconds": exec_time}, function (msg) { if (msg) { // Success! Save this value. akeebabackup.Wizard.maxExecApply(exec_time); } else { // Uh... we have to try something lower than that akeebabackup.Wizard.maxExec(); } }, function () { // Uh... we have to try something lower than that akeebabackup.Wizard.maxExec(); }, false, 38000 // Maximum time to wait: 38 seconds ); }; /** * Apply the maximum execution time * * @param seconds The number of max execution time (in seconds) we found that works on the server */ akeebabackup.Wizard.maxExecApply = function (seconds) { akeebabackup.Backup.resetTimeoutBar(); akeebabackup.Backup.startTimeoutBar(10000, 100); document.getElementById("backup-substep").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_SAVINGMAXEXEC"); akeebabackup.System.doAjax( {act: "applymaxexec", "seconds": seconds}, function () { var stepElement = document.getElementById("step-maxexec"); stepElement.classList.remove('bg-primary'); stepElement.classList.add('bg-success'); akeebabackup.Wizard.partSize(); }, function () { document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTSAVEMAXEXEC"); } ); }; /** * Try to find the best part size for split archives which works on this server */ akeebabackup.Wizard.partSize = function () { akeebabackup.Backup.resetTimeoutBar(); var block_size = akeebabackup.Wizard.blockSizes.shift(); if ((akeebabackup.Wizard.blockSizes.length === 0) || (block_size == null)) { // Uh... I think you are running out of disk space, dude document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("error-panel").style.display = "block"; document.getElementById("backup-error-message").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_CANTDETERMINEPARTSIZE"); return; } var part_size = block_size / 8; // Translate to Mb akeebabackup.Backup.startTimeoutBar(30000, 100); document.getElementById("backup-substep").textContent = Joomla.Text._("COM_AKEEBABACKUP_CONFWIZ_UI_PARTSIZE").replace("%s", part_size.toFixed(3)); var stepElement = document.getElementById("step-splitsize"); stepElement.classList.remove('bg-light'); stepElement.classList.add('bg-primary', 'text-white'); akeebabackup.System.doAjax( {act: "partsize", blocks: block_size}, function (msg) { if (msg) { // We are done var stepElement = document.getElementById("step-splitsize"); stepElement.classList.remove('bg-primary'); stepElement.classList.add('bg-success'); akeebabackup.Wizard.done(); } else { // Let's try the next (lower) value akeebabackup.Wizard.partSize(); } }, function (msg) { // The server blew up on our face. Let's try the next (lower) value. akeebabackup.Wizard.partSize(); }, false, 60000 ); }; /** * The configuration wizard is done */ akeebabackup.Wizard.done = function () { document.getElementById("backup-progress-pane").style.display = "none"; document.getElementById("backup-complete").style.display = "block"; }; akeebabackup.System.documentReady( function () { akeebabackup.Wizard.boot(); });
Close