skill-veil-core 0.1.3

Core library for skill-veil behavioral analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Network-target classification + webhook receiver detection.
//!
//! `targets` produces the [`targets::NetworkTarget`] enum and
//! per-line classifiers used by orchestration in
//! `services::artifact_orchestration::instructions`.
//!
//! `webhook` recognises inbound webhook receivers shipped without
//! authentication and returns a [`webhook::WebhookExposure`] enum
//! that carries its own rule id / reason / label.
//!
//! `findings` builds the actual `Finding` structs (severity, action,
//! threat category) for the three network-shaped signals so the
//! orchestration layer stays free of domain rules.

pub(crate) mod findings;
pub(crate) mod patterns;
pub(crate) mod targets;
pub(crate) mod webhook;