-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
48 lines (46 loc) · 1.31 KB
/
Copy pathlib.rs
File metadata and controls
48 lines (46 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// SPDX-License-Identifier: MPL-2.0
// SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
//! Panic-Attacker — Universal Stress Testing & Bug Signature Detection.
//!
//! This crate provides the core engine for "Security Ambush" operations.
//! It combines traditional stress testing (chaos engineering) with
//! logic-based inference to identify subtle race conditions and
//! state-corruption bugs.
//!
//! ENGINE PILLARS:
//! 1. **Ambush**: Orchestrates high-concurrency attack patterns.
//! 2. **Kanren**: Employs relational programming (microKanren) to infer
//! logical contradictions from system logs.
//! 3. **Signatures**: A database of known bug patterns (e.g. "Double Free",
//! "UAF", "Logic Contradiction") matched against execution traces.
pub mod a2ml;
pub mod abduct;
pub mod adjudicate;
pub mod aggregate;
pub mod ambush;
pub mod amuck;
pub mod assail;
pub mod assay;
pub mod assemblyline;
pub mod attack;
pub mod attestation;
pub mod axial;
#[cfg(feature = "http")]
pub mod bridge;
pub mod campaign;
pub mod comment_marker;
pub mod ffi_kind;
pub mod i18n;
pub mod jit_context;
pub mod kanren;
pub mod mass_panic;
pub mod notify;
pub mod panll;
pub mod query;
pub mod report;
pub mod safe_path;
pub mod signatures;
pub mod storage;
pub mod sweep_tracker;
pub mod test_context;
pub mod types;