mirror of
https://github.com/mr-r3b00t/GoDark
synced 2026-08-07 12:33:02 +00:00
15 lines
274 B
PowerShell
15 lines
274 B
PowerShell
#BYE BYE CHARLIE FREN
|
|
#DNS Client Sinkhole
|
|
|
|
Get-DnsClientNrptRule | Remove-DnsClientNrptRule -Force
|
|
|
|
$domainlist = Get-Content .\domains.txt
|
|
|
|
foreach($namespace in $domainlist){
|
|
|
|
Add-DnsClientNrptRule -Namespace $namespace -NameServers "127.0.0.2"
|
|
|
|
}
|
|
|
|
Get-DnsClientNrptRule
|