Skip to content

Commit

Permalink
chore: bump commonlib, add dcfor info
Browse files Browse the repository at this point in the history
chore: bump version to v2.3.1
  • Loading branch information
rvazarkar committed Jan 19, 2024
1 parent 38a81f3 commit bac3227
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Sharphound.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<LangVersion>latest</LangVersion>
<DebugType>full</DebugType>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<Version>2.3.0</Version>
<FileVersion>2.3.0</FileVersion>
<Version>2.3.1</Version>
<FileVersion>2.3.1</FileVersion>
<Company>SpecterOps</Company>
<Product>SharpHound</Product>
<AssemblyName>SharpHound</AssemblyName>
Expand All @@ -24,8 +24,8 @@
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="SharpHoundCommon" Version="3.1.1" />
<PackageReference Include="SharpHoundRPC" Version="3.1.1" />
<PackageReference Include="SharpHoundCommon" Version="3.1.2" />
<PackageReference Include="SharpHoundRPC" Version="3.1.2" />
<PackageReference Include="SharpZipLib" Version="1.3.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.Threading.Channels" Version="6.0.0" />
Expand All @@ -40,8 +40,8 @@
<Reference Include="System.DirectoryServices.Protocols" />
<Reference Include="System.IO.Compression" />
</ItemGroup>
<Target Name="PS1" AfterTargets="Build">
<Message Text="Test" />
<Exec Command="powershell -ep bypass -c &quot;. '$(ProjectDir)src\Powershell\Out-CompressedDLL.ps1';Out-CompressedDll -FilePath '$(TargetPath)' -TemplatePath '$(ProjectDir)src\\Powershell\Template.ps1' | Out-File -Encoding ASCII '$(TargetDir)$(TargetName).ps1'&quot;" />
</Target>
<!-- <Target Name="PS1" AfterTargets="Build">-->
<!-- <Message Text="Test" />-->
<!-- <Exec Command="powershell -ep bypass -c &quot;. '$(ProjectDir)src\Powershell\Out-CompressedDLL.ps1';Out-CompressedDll -FilePath '$(TargetPath)' -TemplatePath '$(ProjectDir)src\\Powershell\Template.ps1' | Out-File -Encoding ASCII '$(TargetDir)$(TargetName).ps1'&quot;" />-->
<!-- </Target>-->
</Project>
2 changes: 2 additions & 0 deletions src/Runtime/ObjectProcessors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ private async Task<Computer> ProcessComputerObject(ISearchResultEntry entry,

var hasLaps = entry.HasLAPS();
ret.Properties.Add("haslaps", hasLaps);
ret.IsDC = resolvedSearchResult.IsDomainController;
ret.DomainSID = resolvedSearchResult.DomainSid;

if ((_methods & ResolvedCollectionMethod.ACL) != 0)
{
Expand Down

0 comments on commit bac3227

Please sign in to comment.