📁
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: index.js
/* * base/frontend/jupiter/security/tls_wizard/index.js * Copyright 2022 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 */ /* global define: false, require: false */ define( [ "angular", "cjt/core", "lodash", "cjt/modules", "uiBootstrap", "ngRoute", "ngSanitize", "ngAnimate", ], function(angular, CJT, _) { "use strict"; return function() { angular.module("App", ["ui.bootstrap", "angular-growl", "cjt2.cpanel", "ngAnimate"]); var app = require( [ "cjt/bootstrap", "cjt/services/alertService", "cjt/directives/alert", "cjt/directives/alertList", "app/services/CertificatesService", "app/services/LocationService", "app/views/VirtualHostsController", "app/views/PurchaseSimpleController", "app/views/CheckoutController", "app/views/PendingCertificatesController", "app/directives/identityVerificationDirective", "cjt/decorators/growlDecorator", "cjt/services/cpanel/componentSettingSaverService", ], function(BOOTSTRAP) { var app = angular.module("App"); app.value("PAGE", CPANEL.PAGE); // If using views app.controller("BaseController", [ "componentSettingSaverService", "CertificatesService", "$rootScope", "$scope", "$route", "$location", function( $CSSS, CertificatesService, $rootScope, $scope, $route, $location ) { var INTRODUCTION_BLOCK = "IntroductionBlock"; $scope.loading = false; // Convenience functions so we can track changing views for loading purposes $rootScope.$on("$routeChangeStart", function(event, next, current) { if (!current || next.loadedTemplateURL !== current.loadedTemplateURL) { $scope.loading = true; } }); $rootScope.$on("$routeChangeSuccess", function() { $scope.loading = false; }); $rootScope.$on("$routeChangeError", function() { $scope.loading = false; }); $scope.introduction_dismissed = function() { $CSSS.set(INTRODUCTION_BLOCK, { hidden: true, }); CertificatesService.dismiss_introduction(); }; $scope.current_route_matches = function(key) { return $location.path().match(key); }; $scope.go = function(path) { $location.path(path); }; var registering = $CSSS.register(INTRODUCTION_BLOCK); if (registering) { registering.then(function(result) { if (result && result.hidden) { CertificatesService.dismiss_introduction(); } }); } $scope.$on("$destroy", function() { $CSSS.unregister(INTRODUCTION_BLOCK); }); }, ]); // viewName app.config(["$routeProvider", "growlProvider", function($routeProvider, growlProvider) { growlProvider.globalPosition("top-right"); // Setup a route - copy this to add additional routes as necessary $routeProvider.when("/create-advanced/:domain?", { controller: "VirtualHostsController", templateUrl: CJT.buildFullPath("security/tls_wizard/views/virtual_hosts.html.tt"), resolve: { installed_hosts: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_installed_hosts(); }, ], products: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_products(); }, ], domains: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_domains(); }, ], pending_certificates: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_pending_certificates(); }, ], }, }); // Setup a route - copy this to add additional routes as necessary $routeProvider.when("/create/:domain?", { controller: "PurchaseSimpleController", templateUrl: CJT.buildFullPath("security/tls_wizard/views/purchase_simple.html.tt"), resolve: { installed_hosts: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_installed_hosts(); }, ], products: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_products(); }, ], domains: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_domains(); }, ], pending_certificates: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_pending_certificates(); }, ], }, }); // Setup a route - copy this to add additional routes as necessary $routeProvider.when("/pending-certificates/", { controller: "PendingCertificatesController", reloadOnSearch: false, templateUrl: CJT.buildFullPath("security/tls_wizard/views/pending_certificates.html.tt"), resolve: { installed_hosts: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_installed_hosts(); }, ], pending_certificates: ["CertificatesService", "LocationService", "$location", function(CertificatesService, LocationService, $location) { var fetching = CertificatesService.fetch_pending_certificates(); if (_.isFunction(fetching["finally"])) { return fetching.then(function() { if (CertificatesService.get_pending_certificates().length) { return true; } else { LocationService.go_to_last_create_route(); return false; } }); } else { if (CertificatesService.get_pending_certificates().length) { return true; } else { LocationService.go_to_last_create_route(); return false; } } }, ], products: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_products(); }, ], }, }); $routeProvider.when("/purchase/:provider?/:step?/:everythingelse?", { controller: "CheckoutController", templateUrl: CJT.buildFullPath("security/tls_wizard/views/checkout.html.tt"), resolve: { products: ["CertificatesService", function(CertificatesService) { return CertificatesService.fetch_products(); }, ], }, }); // default route $routeProvider.otherwise({ "redirectTo": "/pending-certificates", }); }, ]); // end of using views BOOTSTRAP("#content", "App"); }); return app; }; } );
Save