Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitsadmin/chophound
Some scripts to support with importing large datasets into BloodHound
https://github.com/bitsadmin/chophound
activedirectory bloodhound
Last synced: 3 months ago
JSON representation
Some scripts to support with importing large datasets into BloodHound
- Host: GitHub
- URL: https://github.com/bitsadmin/chophound
- Owner: bitsadmin
- License: bsd-3-clause
- Created: 2022-06-27T12:47:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-28T20:37:42.000Z (11 months ago)
- Last Synced: 2024-07-30T23:50:01.829Z (3 months ago)
- Topics: activedirectory, bloodhound
- Language: Python
- Homepage: https://blog.bitsadmin.com/blog/dealing-with-large-bloodhound-datasets
- Size: 8.79 KB
- Stars: 71
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ChopHound
Some scripts for dealing with any challenges that might arise when importing (large) JSON datasets into BloodHound. The blog which discusses these scripts can be found at [https://blog.bitsadmin.com/blog/dealing-with-large-bloodhound-datasets](https://blog.bitsadmin.com/blog/dealing-with-large-bloodhound-datasets).## Scripts
| Name | Description |
| ---- | ----------- |
| chophound.ps1 | PowerShell implementation of ingesting a large BloodHound JSON file and splitting it into smaller chunks. Note that if the file you are trying to split is too large (or your PC's memory is too small), this script will fail with an out of memory exception. |
| chophound.py | Python implementation of the .ps1 script which has support for splitting large JSON files into smaller chunks. |
| replace.py | Little script to replace non-ASCII characters in the file provided with a question mark ('?') in order to avoid possible encoding errors. Note that when running this script against a file with a Byte-Order Mark at the beginning, those bytes will also simply be replaced by question marks and you will need to manually remove those bytes with a hex editor like [HxD](https://mh-nexus.de/en/hxd/) |