rusthound 1.1.61

Active Directory data collector for Bloodhound written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1.64-slim-buster

WORKDIR /usr/src/rusthound

RUN apt-get -y update && apt-get -y install gcc libclang-dev clang libclang-dev libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit musl-tools gcc-mingw-w64-x86-64

COPY ./src/ ./src/
COPY ./Cargo.toml ./Cargo.toml

RUN cargo install --path .

ENTRYPOINT ["rusthound"]