Skip to content

Commit

Permalink
Fixed install command output not displaying password
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismaddalena committed Jan 22, 2025
1 parent 1b27486 commit c3dc82d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/internal/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func RunDockerComposeInstall(yaml string) {
log.Fatalf("Error trying to bring up environment with %s: %v\n", yaml, upErr)
}
fmt.Println("[+] BloodHound is ready to go!")
fmt.Printf("[+] You can log in as `%s` with this password: %s\n", bhEnv.GetString("default_admin.principal_name"), bhEnv.GetString("default_admin.bh_default_admin_password"))
fmt.Printf("[+] You can log in as `%s` with this password: %s\n", bhEnv.GetString("default_admin.principal_name"), bhEnv.GetString("default_admin.password"))
fmt.Println("[+] You can get your admin password by running: bloodhound-cli config get default_password")
fmt.Printf("[+] You can access the BloodHound UI at: %s%s\n", bhEnv.GetString("root_url"), loginUri)
}
Expand Down

0 comments on commit c3dc82d

Please sign in to comment.