7a6765aecf
- Multi-Source IOC Fetcher (HedgeDoc, CISA, Arch Security, Gist) - AUR-spezifische IOC-Prüfung (keine False-Positives für offizielle Repos) - Erweiterte Threat-Typen (Ransomware, Infostealer, etc.) - Trust-Scoring mit 12 Heuristiken - ALPM-Hook für Pre-Install-Checks - Cache mit 5-Minuten-TTL - CVE und Advisory-URL Support
75 lines
1.5 KiB
TOML
75 lines
1.5 KiB
TOML
[package]
|
|
name = "aegisaur"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
authors = ["Quasi & Thuumate 👻"]
|
|
description = "Trust-Scoring + IOC-Scanner für Arch Linux AUR-Pakete"
|
|
license = "MIT"
|
|
repository = "https://gitea.die-heimatlosen.eu/arch_agent/aegisaur"
|
|
keywords = ["arch-linux", "aur", "security", "supply-chain", "malware-detection"]
|
|
categories = ["command-line-utilities", "security"]
|
|
rust-version = "1.70"
|
|
|
|
[[bin]]
|
|
name = "aegisaur"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# HTTP Client für IOC-Fetching
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
|
|
|
|
# Async Runtime
|
|
tokio = { version = "1.38", features = ["full"] }
|
|
|
|
# JSON Parsing/Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# CLI Argument Parser
|
|
clap = { version = "4.5", features = ["derive", "cargo"] }
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
|
|
# Error Handling
|
|
anyhow = "1.0"
|
|
thiserror = "2.0"
|
|
|
|
# PKGBUILD Parsing
|
|
regex = "1.10"
|
|
|
|
# Config File Management
|
|
config = "0.14"
|
|
toml = "0.8"
|
|
|
|
# Terminal Colors
|
|
colored = "2.1"
|
|
|
|
# Table Output for CLI
|
|
tabled = "0.15"
|
|
|
|
# Fuzzy Matching für Paketnamen
|
|
sublime_fuzzy = "0.7"
|
|
|
|
# Cache / State Management
|
|
directories = "5.0"
|
|
|
|
# Date-Time (für Cache-Timestamps)
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Pfad-Handling
|
|
which = "6.0"
|
|
|
|
# Temporäre Dateien
|
|
tempfile = "3.10"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
wiremock = "0.6"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
strip = true
|
|
panic = "abort" |