Habilidades commit-chat-push Historial de auditorías
📦

Historial de auditorías

commit-chat-push - 2 auditorías

Versión de auditoría 2

Más reciente Riesgo medio

Jun 28, 2026, 02:46 PM

Static analysis found many command, filesystem, and sensitive-data patterns. Most high-volume hits are Markdown transcript records, but the skill intentionally reads Codex session files and can commit a transcript to a remote repository. No prompt injection or confirmed malicious intent was found, but publication should carry a privacy warning.

5
Archivos escaneados
3,579
Líneas analizadas
9
hallazgos
codex
Auditado por
Problemas de riesgo medio (2)
Codex Session Transcript May Be Published
TRUE POSITIVE. The workflow exports local Codex sessions, stages the transcript, and pushes it with code. The skill warns that sessions may contain system instructions, full outputs, and secrets, but accidental disclosure remains possible.
Redaction Can Be Weakened By Export Options
TRUE POSITIVE WITH LEGITIMATE USE. The exporter defaults to safer settings, but options allow full command output and disabled redaction. These options can expose terminal output, local paths, or secrets if used without review.
Problemas de riesgo bajo (2)
Hidden Codex Session Directory Access
TRUE POSITIVE BUT EXPECTED. The exporter reads the configured Codex sessions directory under CODEX_HOME or the home directory. This is necessary for the skill, but users should understand that private local session data is processed.
Static Command Hits In Historical Transcript
FALSE POSITIVE FOR EXECUTION RISK. Many severe static hits occur inside a committed Markdown transcript that records past tool calls. The transcript contains command text, but it is not executable code by itself.

Patrones detectados

Transcript Exfiltration PathOptional Full Tool Output Capture

Versión de auditoría 1

Riesgo medio

May 3, 2026, 08:18 AM

This skill is a legitimate git workflow tool for committing code with Codex session provenance. Static findings are largely false positives: SHA256 is used for hashing file digests (not weak crypto for security), backtick patterns are documentation artifacts, and the CRITICAL blockers on ransomware/recursive delete refer to git rm commands used appropriately for git operations. The skill includes a built-in redaction system and explicit workflow steps to prevent secret leakage.

6
Archivos escaneados
3,589
Líneas analizadas
7
hallazgos
claude
Auditado por

Problemas de riesgo alto (1)

Command Execution in Documentation
Documentation files contain examples of shell command patterns including backticks, command substitution, and Unix shell invocations. These are documented examples, not executable code in the skill itself.
Problemas de riesgo medio (2)
Redaction System Detected
The skill includes a redaction system to remove secrets from exported transcripts. The system uses regex patterns to detect and redact API keys, tokens, and sensitive credentials.
Home Directory Path Handling
The skill accesses ~/.codex/sessions for transcript files and shortens home paths to ~ in output for privacy. This is expected behavior for a Codex session export tool.
Problemas de riesgo bajo (2)
Cryptographic Hash Usage
SHA256 is used for file digest computation to track transcript source files. This is appropriate cryptographic usage for integrity verification.
File System Access for Transcript Export
The skill creates and writes transcript files to the repository. This is the intended purpose of the skill.

Patrones detectados

Static Analysis False Positives in Documentation