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 : RC_DateTime.ps1
# Copyright ©, Microsoft Corporation. All rights reserved. trap {break} # Check whether the system time is accurate # Function to parse the strip data with time server function Parse-OffsetData($offsetData = $(throw "No offset data is specified")) { if($offsetData -eq $null) { return $null } $result = @() [string]$pattern = "\d{2,}:\d{2}:\d{2},\W([+-]\d{2,})\.\d{7}s" $offsetData.GetEnumerator() | ForEach-Object { if(($_ -match $pattern) -and ($matches[1] -ne $null)) { $result += [long]$matches[1] } } return $result } # Function to check whether the system time is accurate function Test-Offset([int]$offset = $(throw "No offset is specified")) { [int]$maxOffset = (5 * 60) return ([Math]::Abs($offset) -lt $maxOffset) } # Function to get time service status function Get-ServiceStatus([string]$serviceName=$(throw "No service name is specified")) { [bool]$startService = $true [WMI]$timeService = @(Get-WmiObject -Query "Select * From Win32_Service Where Name = `"$serviceName`"")[0] if($null -ne $timeService) { [ServiceProcess.ServiceControllerStatus]$timeServicesStatus = (Get-Service $serviceName).Status if(([ServiceProcess.ServiceControllerStatus]::Stopped -eq $timeServicesStatus) -or ([ServiceProcess.ServiceControllerStatus]::StopPending -eq $timeServicesStatus)) { $startService = $false } } return $startService } # Function to check whether the system time is accurate Function Check-TimeAccurateness([string]$timeServer = $(throw "No time source is specified")) { [bool]$checked = $false if(-not[String]::IsNullOrEmpty($timeServer)) { (ping.exe $timeServer /n 2) | Out-Null if($LASTEXITCODE -eq 0) { [int]$sampleCount = 1 [DateTime]$accurateion = [DateTime]::Now $offsetData = (w32tm.exe /stripchart /computer:$timeServer /dataonly /samples:$sampleCount) (Parse-OffsetData $offsetData) | Foreach-Object { if(-not(Test-Offset $_)) { $timeDifference = $_ $accurateion = [DateTime]::Now.Add([TimeSpan]::FromSeconds($_)) $checked = $true Update-DiagRootCause -id "RC_DateTime" -Detected $true -parameter @{'AccurateTime'=$accurateion.ToString()} } else { Update-DiagRootCause -id "RC_DateTime" -Detected $false -parameter @{'AccurateTime'=$accurateion.ToString()} $checked = $true } } } } return $checked } # function to get the startup type of a serivce function GetServiceStartupType([string]$serviceName) { [string]$state = "Disabled" [WMI]$service = @(Get-WmiObject -Query "Select * From Win32_Service Where Name = `"$serviceName`"")[0] if($null -ne $service) { $state = $service.StartMode } return $state } if("Disabled" -eq (GetServiceStartupType "W32time")) { return } [bool]$timeServiceStatus = Get-ServiceStatus "w32time" try { if(-not($timeServiceStatus)) { Start-Service "w32time" WaitFor-ServiceStatus "w32time" ([ServiceProcess.ServiceControllerStatus]::Running) } [string]$timeServerInfo = (w32tm.exe /query /source) if($LASTEXITCODE -ne 0) { return } [string]$timeServer = $timeServerInfo.Split(',', [StringSplitOptions]::RemoveEmptyEntries)[0].Trim() if(-not(Check-TimeAccurateness $timeServer)) { $timeServer = "time.windows.com" [bool]$checked = Check-TimeAccurateness $timeServer if(-not($checked)) { [DateTime]$accurateion = [DateTime]::Now Update-DiagRootCause -id "RC_DateTime" -Detected $false -parameter @{'AccurateTime'=$accurateion.ToString()} } } } finally { if(-not($timeServiceStatus)) { Stop-Service "w32time" WaitFor-ServiceStatus "w32time" ([ServiceProcess.ServiceControllerStatus]::Stopped) } }
Close