Skip to content

Commit

Permalink
Bump SHC version (#111)
Browse files Browse the repository at this point in the history
* feat: additional ldap properties

* bump SHC version
  • Loading branch information
JonasBK authored Sep 3, 2024
1 parent 0bf98fd commit 0dff518
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Sharphound.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="SharpHoundCommon" Version="4.0.4" />
<PackageReference Include="SharpHoundRPC" Version="4.0.4" />
<PackageReference Include="SharpHoundCommon" Version="4.0.6" />
<PackageReference Include="SharpHoundRPC" Version="4.0.6" />
<PackageReference Include="SharpZipLib" Version="1.3.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.Threading.Channels" Version="8.0.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
<!-- <Reference Include="SharpHoundCommonLib">-->
<!-- <HintPath>..\SharpHoundCommon\src\CommonLib\bin\Debug\net462\SharpHoundCommonLib.dll</HintPath>-->
<!-- </Reference>-->
<!-- <Reference Include="SharpHoundCommon">
<HintPath>..\SharpHoundCommon\src\CommonLib\bin\Debug\net462\SharpHoundCommonLib.dll</HintPath>
</Reference> -->
<Reference Include="System.DirectoryServices" />
<Reference Include="System.DirectoryServices.Protocols" />
<Reference Include="System.IO.Compression" />
Expand Down
2 changes: 1 addition & 1 deletion src/Runtime/ObjectProcessors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ private async Task<Domain> ProcessDomainObject(IDirectoryObject entry,
.ToArrayAsync();

if ((_methods & CollectionMethod.ObjectProps) != 0) {
ret.Properties = ContextUtils.Merge(ret.Properties, LdapPropertyProcessor.ReadDomainProperties(entry));
ret.Properties = ContextUtils.Merge(ret.Properties, await _ldapPropertyProcessor.ReadDomainProperties(entry, resolvedSearchResult.Domain));
if (_context.Flags.CollectAllProperties) {
ret.Properties = ContextUtils.Merge(_ldapPropertyProcessor.ParseAllProperties(entry),
ret.Properties);
Expand Down

0 comments on commit 0dff518

Please sign in to comment.