├── .gitignore ├── ADExplorerSnapshot.py ├── Dockerfile ├── README.md ├── adexpsnapshot ├── __init__.py ├── __main__.py ├── enrich.py ├── ouput │ ├── bloodhound.py │ ├── bofhound.py │ └── objects.py ├── parser │ ├── classes.py │ └── structure.py └── treeview │ ├── __init__.py │ ├── section_encoder.py │ ├── structure.py │ └── synthetic.py ├── meta ├── adexplorer.png ├── adexplorersnapshot.bt ├── adexpsnapshotpy.png └── bofhound.png ├── pyproject.toml ├── requirements.txt ├── scripts ├── adidns_dump.py ├── cert_dump.py ├── dfs_dump.py ├── get_attributes.py ├── gpo_dump.py ├── interestingdata_dump.py ├── subnets_dump.py └── telephonenumbers_dump.py ├── tests ├── data │ └── detectionlab.dat └── test_detectionlab.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /ADExplorerSnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/ADExplorerSnapshot.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/README.md -------------------------------------------------------------------------------- /adexpsnapshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/__init__.py -------------------------------------------------------------------------------- /adexpsnapshot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/__main__.py -------------------------------------------------------------------------------- /adexpsnapshot/enrich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/enrich.py -------------------------------------------------------------------------------- /adexpsnapshot/ouput/bloodhound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/ouput/bloodhound.py -------------------------------------------------------------------------------- /adexpsnapshot/ouput/bofhound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/ouput/bofhound.py -------------------------------------------------------------------------------- /adexpsnapshot/ouput/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/ouput/objects.py -------------------------------------------------------------------------------- /adexpsnapshot/parser/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/parser/classes.py -------------------------------------------------------------------------------- /adexpsnapshot/parser/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/parser/structure.py -------------------------------------------------------------------------------- /adexpsnapshot/treeview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/treeview/__init__.py -------------------------------------------------------------------------------- /adexpsnapshot/treeview/section_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/treeview/section_encoder.py -------------------------------------------------------------------------------- /adexpsnapshot/treeview/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/treeview/structure.py -------------------------------------------------------------------------------- /adexpsnapshot/treeview/synthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/adexpsnapshot/treeview/synthetic.py -------------------------------------------------------------------------------- /meta/adexplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/meta/adexplorer.png -------------------------------------------------------------------------------- /meta/adexplorersnapshot.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/meta/adexplorersnapshot.bt -------------------------------------------------------------------------------- /meta/adexpsnapshotpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/meta/adexpsnapshotpy.png -------------------------------------------------------------------------------- /meta/bofhound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/meta/bofhound.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /scripts/adidns_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/adidns_dump.py -------------------------------------------------------------------------------- /scripts/cert_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/cert_dump.py -------------------------------------------------------------------------------- /scripts/dfs_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/dfs_dump.py -------------------------------------------------------------------------------- /scripts/get_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/get_attributes.py -------------------------------------------------------------------------------- /scripts/gpo_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/gpo_dump.py -------------------------------------------------------------------------------- /scripts/interestingdata_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/interestingdata_dump.py -------------------------------------------------------------------------------- /scripts/subnets_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/subnets_dump.py -------------------------------------------------------------------------------- /scripts/telephonenumbers_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/scripts/telephonenumbers_dump.py -------------------------------------------------------------------------------- /tests/data/detectionlab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/tests/data/detectionlab.dat -------------------------------------------------------------------------------- /tests/test_detectionlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/tests/test_detectionlab.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3c/ADExplorerSnapshot/HEAD/uv.lock --------------------------------------------------------------------------------