-
Notifications
You must be signed in to change notification settings - Fork 0
BloodHound CSV Format
If the results from Get-BloodHoundData are exported to CSV files with Export-BloodHoundCSV, the custom PSObjects returned are correlated and four separate CSV file types/formats are written to disk.
This file preserves the information needed to specify which users are logged on where. It is fed by Get-NetSession/Get-NetLoggedOn/Invoke-UserHunter results. The weight attribute indicates the confidence in the relationship.
UserName,ComputerName,Weight
"john@domain.local","computer2.domain.local",1
This file preserves the information needed to specify which groups/users are a member of which groups in a domain. It is fed by Get-NetGroupMember.
AccountName,AccountType,GroupName
"john@domain.local","user","GROUP1"
"computer3.testlab.local","computer","GROUP1"
This file preserves the information needed to specify which users/groups have local administrator rights on which systems in the domain. It is fed by Get-NetLocalGroup.
AccountName,AccountType,ComputerName
"john@domain.local","user","computer2.domain.local"
This file preserves the information needed to specify the domain trusts that are reachable.
SourceDomain,TargetDomain,TrustDirection,TrustType,Transitive
"domain.local","dev.domain.local","Bidirectional","ParentChild","True"