netapi32/DsEnumerateDomainTrusts.ps1
function DsEnumerateDomainTrusts { <# .SYNOPSIS Returns domain trust data for a specified server or domain. .DESCRIPTION This function will execute the DsEnumerateDomainTrusts Win32API call to enumerate trusts for the current or specified domain. .PARAMETER ComputerName Specifies the hostname or domain to query current domain trusts for. .NOTES Author: Will Schroeder (@harmj0y) License: BSD 3-Clause Required Dependencies: PSReflect, ConvertSidToStringSid (Function), NetApiBufferFree (Function) Optional Dependencies: None (func netapi32 DsEnumerateDomainTrusts ([Int32]) @( [string], # _In_opt_ LPTSTR ServerName [UInt32], # _In_ ULONG Flags [IntPtr].MakeByRefType(), # _Out_ PDS_DOMAIN_TRUSTS *Domains [IntPtr].MakeByRefType() # _Out_ PULONG DomainCount ) -EntryPoint DsEnumerateDomainTrusts) .LINK https://msdn.microsoft.com/en-us/library/ms675976(v=vs.85).aspx .EXAMPLE #> [CmdletBinding()] Param( [Parameter(Position = 0, ValueFromPipeline = $True, ValueFromPipelineByPropertyName = $True)] [Alias('HostName', 'dnshostname', 'name', 'Domain', 'DomainName')] [ValidateNotNullOrEmpty()] [String] $ComputerName ) PROCESS { $PtrInfo = [IntPtr]::Zero # 63 = DS_DOMAIN_IN_FOREST + DS_DOMAIN_DIRECT_OUTBOUND + DS_DOMAIN_TREE_ROOT + DS_DOMAIN_PRIMARY + DS_DOMAIN_NATIVE_MODE + DS_DOMAIN_DIRECT_INBOUND $Flags = 63 $DomainCount = 0 # get the trust information from the target server/domain $Result = $Netapi32::DsEnumerateDomainTrusts($ComputerName, $Flags, [ref]$PtrInfo, [ref]$DomainCount) # locate the offset of the initial intPtr $Offset = $PtrInfo.ToInt64() # work out how much to increment the pointer by finding out the size of the structure $Increment = $DS_DOMAIN_TRUSTS::GetSize() # 0 = success if (($Result -eq 0) -and ($Offset -gt 0)) { # parse all the result structures for ($i = 0; ($i -lt $DomainCount); $i++) { # create a new int ptr at the given offset and cast the pointer as our result structure $NewIntPtr = New-Object System.Intptr -ArgumentList $Offset # grab the appropriate result structure $Info = $NewIntPtr -as $DS_DOMAIN_TRUSTS # return all the sections of the structure - have to do it this way for V2 $Object = $Info | Select-Object * $SidString = ConvertSidToStringSid -SidPointer $Info.DomainSid $Object.DomainSid = $SidString # return all the sections of the structure - have to do it this way for V2 $Offset = $NewIntPtr.ToInt64() $Offset += $Increment $Object } # free up the result buffer NetApiBufferFree -Buffer $PtrInfo } else { Write-Verbose "[DsEnumerateDomainTrusts] Error: $(([ComponentModel.Win32Exception] $Result).Message)" } } } |