BloodHoundAD / BloodHound

Six Degrees of Domain Admin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature Request: Collect operatingSystemServicePack and operatingSystemVersion

b3n-j4m1n opened this issue · comments

BloodHound currently only has operatingSystem for computers, it would be useful to also have operatingSystemServicePack and operatingSystemVersion

The operating system value in BH is actually collected using both properties.

var os = entry.GetProperty(LDAPProperties.OperatingSystem);
            var sp = entry.GetProperty(LDAPProperties.ServicePack);

            if (sp != null) os = $"{os} {sp}";

            props.Add("operatingsystem", os);