Files
Cloud-20Engineering/Powershell/Modules/Effectory.Dns/Effectory.Dns.psm1
Jurjen Ladenius 1a3bc1370e Commit 2c6e8ced: Multiple changes
- Check output
- Updated list generation
- Started subdomain takeover check module
2021-08-12 10:46:04 +02:00

15 lines
482 B
PowerShell

#Requires -Modules Az.Accounts,Az.Websites,Az.FrontDoor,Az.Storage,Az.Cdn,Az.Network,Az.TrafficManager,Az.ContainerInstance
<#
.SYNOPSIS
Find dangling DNS records
.DESCRIPTION
Compares DNS bindings with a previous state and checks the existence of DNS records for bindings that may have been deleted.
#>
'public', 'private' |
Resolve-Path -Path $PSScriptRoot -ChildPath { $_ } |
Get-ChildItem -Recurse -File -Filter *.ps1 |
ForEach-Object {
. $_.FullName
}