From 103457270099ffe51e9f635fa4b68e1228a5d54e Mon Sep 17 00:00:00 2001 From: HarmJ0y Date: Wed, 19 Oct 2016 13:39:38 -0400 Subject: [PATCH] trust csv bug fix --- PowerShell/BloodHound.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerShell/BloodHound.ps1 b/PowerShell/BloodHound.ps1 index 736c88d31..499819c8a 100644 --- a/PowerShell/BloodHound.ps1 +++ b/PowerShell/BloodHound.ps1 @@ -4797,7 +4797,7 @@ function Invoke-BloodHound { $TrustWriter.AutoFlush = $True if (-not $Exists) { # add the header if the file doesn't already exist - $TrustWriter.WriteLine('"SourceDomain","TargetDomain","TrustDirection","TrustType","Transitive') + $TrustWriter.WriteLine('"SourceDomain","TargetDomain","TrustDirection","TrustType","Transitive"') } } }