Skip to content

addenial/bloodhound-users-json-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

bloodhound-users-json-parser.py

Parse bloodhound user json file to a cvs.

Currently the script only pulls and parses the following Active Directory user fields of interest:

name,enabled,displayname,email,title,description

Usage

python ./bloodhound-users-json-parser.py <bloodhound-users.json>

Examples

Parse and output to file:

python ./bloodhound-users-json-parser.py bloodhound-users.json > parsed-users.csv

View only enabled accounts (use list for pw guessing purposes):

cat parsed-users.csv | grep True | cut -d "," -f 1

View all emails only, sort alphabetically and remove any duplicates:

cat parsed-users.csv | cut -d "," -f 4 | sort | uniq

View unique account descriptions (any passwords in there?)

cat parsed-users.csv | cut -d "," -f 6 | sort | uniq

About

Parse bloodhound user JSON file to a grepable CSV format.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages