docs

Audit-Verlauf

documentation - 5 Audits

Audit-Version 5

Neueste Sicher

Jan 16, 2026, 11:45 PM

All 805 static findings are false positives. The analyzer flagged markdown documentation showing example shell commands and technical keywords as security risks. Actual shell scripts are legitimate documentation utilities using standard Unix tools.

28
Gescannte Dateien
4,872
Analysierte Zeilen
1
befunde
claude
Auditiert von
Keine Sicherheitsprobleme gefunden

Audit-Version 4

Sicher

Jan 16, 2026, 11:45 PM

All 805 static findings are false positives. The analyzer flagged markdown documentation showing example shell commands and technical keywords as security risks. Actual shell scripts are legitimate documentation utilities using standard Unix tools.

28
Gescannte Dateien
4,872
Analysierte Zeilen
1
befunde
claude
Auditiert von
Keine Sicherheitsprobleme gefunden

Audit-Version 3

Niedriges Risiko

Jan 10, 2026, 01:42 PM

Documentation management skill with shell scripts for section-level file operations. All scripts operate only on markdown files within the docs directory using safe text processing utilities. No network activity or sensitive system access detected.

14
Gescannte Dateien
2,449
Analysierte Zeilen
4
befunde
claude
Auditiert von
Probleme mit mittlerem Risiko (1)
File write operations in scripts
Scripts use 'mv' to replace files and 'mktemp' for temp files during write operations. Example from doc-update-section.sh line 80: 'mv "$TEMP_FILE" "$FILE"'. This is standard practice for atomic file replacement but could be misused if user provides malicious paths. The skill relies on user-provided file paths and does not implement path validation beyond file existence checks.
Probleme mit niedrigem Risiko (1)
Temporary file creation with mktemp
Scripts create temporary files using 'mktemp' for safe file operations. While generally safe, the temp files are created in system temp directory. Example from doc-find-duplicates.sh line 26: 'TEMP_DIR=$(mktemp -d)'. No sensitive data is written to these temp files.

Audit-Version 2

Niedriges Risiko

Jan 10, 2026, 01:42 PM

Documentation management skill with shell scripts for section-level file operations. All scripts operate only on markdown files within the docs directory using safe text processing utilities. No network activity or sensitive system access detected.

14
Gescannte Dateien
2,449
Analysierte Zeilen
4
befunde
claude
Auditiert von
Probleme mit mittlerem Risiko (1)
File write operations in scripts
Scripts use 'mv' to replace files and 'mktemp' for temp files during write operations. Example from doc-update-section.sh line 80: 'mv "$TEMP_FILE" "$FILE"'. This is standard practice for atomic file replacement but could be misused if user provides malicious paths. The skill relies on user-provided file paths and does not implement path validation beyond file existence checks.
Probleme mit niedrigem Risiko (1)
Temporary file creation with mktemp
Scripts create temporary files using 'mktemp' for safe file operations. While generally safe, the temp files are created in system temp directory. Example from doc-find-duplicates.sh line 26: 'TEMP_DIR=$(mktemp -d)'. No sensitive data is written to these temp files.

Audit-Version 1

Niedriges Risiko

Jan 10, 2026, 01:42 PM

Documentation management skill with shell scripts for section-level file operations. All scripts operate only on markdown files within the docs directory using safe text processing utilities. No network activity or sensitive system access detected.

14
Gescannte Dateien
2,449
Analysierte Zeilen
4
befunde
claude
Auditiert von
Probleme mit mittlerem Risiko (1)
File write operations in scripts
Scripts use 'mv' to replace files and 'mktemp' for temp files during write operations. Example from doc-update-section.sh line 80: 'mv "$TEMP_FILE" "$FILE"'. This is standard practice for atomic file replacement but could be misused if user provides malicious paths. The skill relies on user-provided file paths and does not implement path validation beyond file existence checks.
Probleme mit niedrigem Risiko (1)
Temporary file creation with mktemp
Scripts create temporary files using 'mktemp' for safe file operations. While generally safe, the temp files are created in system temp directory. Example from doc-find-duplicates.sh line 26: 'TEMP_DIR=$(mktemp -d)'. No sensitive data is written to these temp files.