Skip to content

Commit

Permalink
Installing Bloodhound CE
Browse files Browse the repository at this point in the history
  • Loading branch information
farukerdem34 committed Jan 12, 2025
1 parent 63300a4 commit b59cbe8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions content/Guides/bloodhound.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
tags:
- guide
title: Installing Bloodhound
---
# Install Docker
```bash
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | \
sudo tee /etc/apt/sources.list.d/docker.list
```

```bash
curl -fsSL https://download.docker.com/linux/debian/gpg |
sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
```

```bash
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io
```


# Install&Run Bloodhound
```bash
curl -L https://ghst.ly/getbhce -o compose.yml
docker compose pull
docker compose up -d
```

After running `docker compose up` you will get a one-time password. You will use this to go to `localhost:8080` and log in as `admin`.

0 comments on commit b59cbe8

Please sign in to comment.