Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
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
/
opt /
bitnami /
nami /
lib /
cloud /
[ HOME SHELL ]
Name
Size
Permission
Action
aws.js
6.16
KB
-rw-r--r--
azure.js
6.3
KB
-rw-r--r--
base.js
6.69
KB
-rw-r--r--
container.js
871
B
-rw-r--r--
gce.js
2.61
KB
-rw-r--r--
index.js
1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
"use strict"; /* * Copyright VMware, Inc. * SPDX-License-Identifier: GPL-2.0-only */ Object.defineProperty(exports, "__esModule", { value: true }); exports.createCloud = void 0; const container_1 = require("./container"); const azure_1 = require("./azure"); const aws_1 = require("./aws"); const gce_1 = require("./gce"); const cloudMap = { container: container_1.ContainerCloud, aws: aws_1.AwsCloud, amazon: aws_1.AwsCloud, gce: gce_1.GceCloud, azure: azure_1.AzureCloud, }; /** * Create an instance of appropriate class implementing the `Cloud` interface ; * this should not be called directly, but only once by the `Provisioner` object */ function createCloud(options) { if (cloudMap[options.cloudName]) { return new cloudMap[options.cloudName](options); } else { options.logger.warn("No cloud or unknown cloud specified -", "falling back to container-based cloud logic"); return new container_1.ContainerCloud(options); } } exports.createCloud = createCloud;
Close