adhammer-core 1.4.6

ADhammer core model — SID/GUID, AD object snapshot, findings, MITRE mapping.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Shared domain model: SIDs, GUIDs, collected AD objects, findings, risk config.
//! Everything above this crate (checks, graph, report) speaks in these types.

pub mod finding;
pub mod object;
pub mod redact;
pub mod sid;
pub mod snapshot;

pub use finding::{
    AttackResult, Category, Evidence, Finding, Mitre, Severity, WireDirection, WireExchange,
    WireLayer,
};
pub use object::AdObject;
pub use redact::Redacted;
pub use sid::{Guid, Sid};
pub use snapshot::{SearchOp, Snapshot};