> For the complete documentation index, see [llms.txt](https://www.pentestwiki.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pentestwiki.com/etc/tools/bloodhound.md).

# BloodHound

<pre class="language-bash"><code class="lang-bash"><strong># 원하는 경로로 이동 (예: ~/bloodhound)
</strong>mkdir -p ~/bloodhound &#x26;&#x26; cd ~/bloodhound

<strong># docker 및docker-compose 파일 다운로드
</strong>apt update &#x26;&#x26; apt install -y docker.io
curl -L https://ghst.ly/getbhce > docker-compose.yml

<strong># 최초 1회만 실행
</strong>docker-compose pull

<strong># 이후에는 항상 이렇게 실행
</strong>docker-compose up -d    # -d: 백그라운드 실행

<strong># 초기 패스워드 확인
</strong>docker logs bloodhound-bloodhound-1 2>&#x26;1 | grep -i password
</code></pre>
