diff --git a/README.md b/README.md index b829879..70dd38e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ Ein kuratiertes Verzeichnis für digitale Forensik- und Incident-Response-Tools, entwickelt für die Seminargruppe CC24-w1. +*DISCLAIMER:* +Hier wurde Exzessives Vibe-Coding verwendet. Die Auswahl der Software ist aber kuratiert. + ## 🎯 Projektübersicht CC24-Hub ist eine statische Website, die eine strukturierte Übersicht über bewährte DFIR-Tools bietet. Das Projekt orientiert sich am NIST-Framework (SP 800-86) und kategorisiert Tools nach forensischen Domänen und Untersuchungsphasen. diff --git a/src/components/AIQueryInterface.astro b/src/components/AIQueryInterface.astro index f29a7a6..6aa81b5 100644 --- a/src/components/AIQueryInterface.astro +++ b/src/components/AIQueryInterface.astro @@ -1,598 +1,381 @@ --- -// src/components/AIQueryInterface.astro import { promises as fs } from 'fs'; import { load } from 'js-yaml'; import path from 'path'; -// Load tools data for tool details +// Load tools data for validation const yamlPath = path.join(process.cwd(), 'src/data/tools.yaml'); const yamlContent = await fs.readFile(yamlPath, 'utf8'); const data = load(yamlContent) as any; const tools = data.tools; -const phases = data.phases.filter((phase: any) => phase.id !== 'collaboration-general'); --- -