
큰 BloodHound JSON 파일을 가져오기 위해 더 작은 파일로 분할하는 작은 유틸리티입니다.
큰 BloodHound JSON 파일을 더 작은 여러 파일로 분할하여 더 빠르게 가져올 수 있습니다.
Twitter에서 팔로우하세요 (Mike Felch - @ustayready)
usage: shred.py [-h] --output OUTPUT --filename FILENAME [--chunks CHUNKS]
optional arguments:
-h, --help show this help message and exit
--output OUTPUT Output folder for chunked JSON files
--filename FILENAME Name of the BloodHound JSON file
--chunks CHUNKS Number of chunks to split the BloodHound JSON file
into
ShredHound the BloodHound JSON splitter
python shred.py --filename /tmp/output.json --chunks 100 --output /tmp/
다음 명령어로 설치 및 실행할 수 있습니다:
$ git clone https://github.com/ustayready/shredhound
$ cd shredhound
~/shredhound $ virtualenv -p python3 .
~/shredhound $ source bin/activate
(shredhound) ~/shredhound $ python shred.py