SharpHound3
SharpHound3 copied to clipboard
C# Data Collector for the BloodHound Project, Version 3
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Currently using Bloodhound to scan the AD environment at work and it continues to crash with an error of "OutOfMemoryException" at around the ~8:30hr mark. The host has 128gb ram...
Bumps [SharpZipLib](https://github.com/icsharpcode/SharpZipLib) from 1.2.0 to 1.3.3. Release notes Sourced from SharpZipLib's releases. v1.3.3 Another minor release, containing security fixes and smaller bugfixes. Fixes: 🐛 specialized tar extract traversal by nils...
Targeting .NET Framework 4.5 as said in the README. Error Output: ~~~ Build started... 1>------ Build started: Project: SharpHound3, Configuration: Debug Any CPU ------ 1>C:\Users\B*\tools\SharpHound3\SharpHound3\ResolutionHelpers.cs(203,40,203,78): error CS0308: The non-generic method...
Hello! While executing `Sharphound.exe` =, occasionally I get the following crash and the collection stops: ``` Application: SharpHound.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled...
After running Sharphound in the same environment for many months, something has changed. We now get this when running a collection against our largest domain: v4.0.2 and 4.0.3 binaries both...
Good morning, While working through Rastamouse's CRTO course, it was identified that running GPOLocalGroup alone as a Sharphound query was not returning full GPOLocalGroup data. Him and I worked through...
I am not an expert on this but from my reading, if you need to free unmanaged resources, you can implement IDisposable. `LocalGroupTasks.cs` has a helper class that tries to...
I think there is a problem with this coding pattern : ```c# var netWkstaTask = Task.Run(() => NetWkstaGetInfo(hostname, 100, out wkstaData)); if (await Task.WhenAny(Task.Delay(5000), netWkstaTask) != netWkstaTask) return (false, new...