{"id":28507854,"url":"https://github.com/compasssecurity/bloodhoundce-resources","last_synced_at":"2026-02-28T03:39:57.380Z","repository":{"id":275793235,"uuid":"916598197","full_name":"CompassSecurity/bloodhoundce-resources","owner":"CompassSecurity","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-11T13:18:35.000Z","size":229,"stargazers_count":85,"open_issues_count":0,"forks_count":6,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-12-12T16:29:26.872Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CompassSecurity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-14T12:14:10.000Z","updated_at":"2025-12-11T13:18:38.000Z","dependencies_parsed_at":"2025-05-27T16:38:45.414Z","dependency_job_id":null,"html_url":"https://github.com/CompassSecurity/bloodhoundce-resources","commit_stats":null,"previous_names":["compasssecurity/bloodhoundce-resources"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CompassSecurity/bloodhoundce-resources","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CompassSecurity%2Fbloodhoundce-resources","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CompassSecurity%2Fbloodhoundce-resources/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CompassSecurity%2Fbloodhoundce-resources/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CompassSecurity%2Fbloodhoundce-resources/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CompassSecurity","download_url":"https://codeload.github.com/CompassSecurity/bloodhoundce-resources/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CompassSecurity%2Fbloodhoundce-resources/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29924292,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-08T21:06:46.856Z","updated_at":"2026-02-28T03:39:57.376Z","avatar_url":"https://github.com/CompassSecurity.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Compass Security BloodHound CE Resources\n\n![](./banner.jpg)\n\nThis repository contains some useful resources regarding BloodHound CE:\n\n- BloodHound CE Custom Queries [↓](#bloodhound-ce-custom-queries)\n- BloodHound Operator Custom Queries [↓](#bloodhound-operator-custom-queries)\n- Useful Links [↓](#useful-links)\n\n## BloodHound CE Custom Queries\n\nThese queries are used in BloodHound CE to analyze your collected data.\n\n### Direct Usage\n\nYou can directly copy the [BloodHound CE Custom\nQueries](custom_queries/BloodHound_CE_Custom_Queries.md) from your browser into\nyour BloodHound CE instance.\n\n### Import\n\n#### Initial Preparation\n\nInstall PowerShell on Kali:\n\n```bash\nsudo apt -y install powershell\n```\n\nYou can now start a new PowerShell using `pwsh`.\n\nClone the `BloodHoundOperator` repository:\n\n```bash\ngit clone https://github.com/SadProcessor/BloodHoundOperator.git\n```\n\n#### Query Import\n\nLoad the BloodHoundOperator module:\n\n```powershell\nImport-Module /opt/BloodHoundOperator/BloodHoundOperator.ps1\n```\n\nDot-Source (note the `.` in front of the command)\n`Create-BloodHoundOperatorSession.ps1` script to create a new\nBloodHoundOperator session and make it available in your current PowerShell:\n\n```powershell\n. ./scripts/Create-BloodHoundOperatorSession.ps1 -Password 'YourP@ssw0rd'\n```\n\nParameters:\n\n- `-Password`: Password (mandatory, if you don't specify it on the commandline,\n  you will be prompted)\n- `-Username`: Username (optional, default: `admin`)\n- `-Hostname`: Hostname / IP address of the BloodHound API (optional, default:\n  `127.0.0.1`)\n- `-Port`: Port of the BloodHound API (optional, default: `8080`)\n\nExecute the `Import-BloodHoundCECustomQueries.ps1` script to import the custom\nqueries:\n\n```powershell\n./scripts/Import-BloodHoundCECustomQueries.ps1\n```\n\nThe imported queries are then shown in BloodHound:\n\n![Custom Queries](./custom_queries/custom_queries.png)\n\n## BloodHound Operator Custom Queries\n\nThese queries are used in a BloodHound Operator session, to modify your\ncollected data.\n\n### Usage\n\nLoad the `BloodHoundOperator` module and dot-source the\n`Create-BloodHoundOperatorSession.ps1` script as explained above.\n\nThen directly copy the [BloodHound Operator Custom Queries](custom_queries/BloodHound_Operator_Custom_Queries.md)\nfrom your browser into your PowerShell console.\n\n## Useful Links\n\n### BloodHound\n\n- BloodHound Documentation: https://bloodhound.specterops.io/\n  - Nodes: https://bloodhound.specterops.io/resources/nodes/overview\n  - Edges: https://bloodhound.specterops.io/resources/edges/overview\n  - Release Notes: https://bloodhound.specterops.io/resources/release-notes/summary\n- BloodHound GitHub: https://github.com/SpecterOps/BloodHound\n- SharpHound GitHub: https://github.com/SpecterOps/SharpHound\n\n### Neo4J Cypher\n\n- Neo4J: Cypher Manual: https://neo4j.com/docs/cypher-manual\n- Neo4J: Cypher Cheat Sheet: https://neo4j.com/docs/cypher-cheat-sheet/\n- Cypher Queries in BloodHound Enterprise:\n  https://posts.specterops.io/cypher-queries-in-bloodhound-enterprise-c7221a0d4bb3\n- BloodHound: Searching with Cypher:\n  https://support.bloodhoundenterprise.io/hc/en-us/articles/16721164740251-Searching-with-Cypher\n- BloodHound Documentation: Supported Cypher Syntax:\n  https://bloodhound.specterops.io/analyze-data/cypher-supported\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcompasssecurity%2Fbloodhoundce-resources","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcompasssecurity%2Fbloodhoundce-resources","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcompasssecurity%2Fbloodhoundce-resources/lists"}