Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
SSL Manager
/
Scripts
/
View File Name :
microsoft-dns.ps1
Import-module dnsserver $computername = "localhost" $action = $args[0] $zone = $args[1] $name = $args[2].Replace($zone,"").Trim(".") if($action -eq "create") { $text = $args[3] Add-DnsServerResourceRecord -TXT -Computername $computername -ZoneName $zone -Name $name -DescriptiveText $text }elseif($action -eq "delete") { Remove-DnsServerResourceRecord -RRType "Txt" -Computername $computername -ZoneName $zone -Name $name -Force }