aura-security-scanner

clawhub:aura-security-scanner

View source
C
60/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

2

Score

60/100

CRITICAL 1
HIGH 1

Findings (2)

CRITICAL
Instruction override attempt
L23

Detects attempts to override or ignore previous instructions

override system instructions
FIX

Remove the injection payload from the skill definition. Text that attempts to reset agent context or override prior directives is a direct attack vector.

FP?

Likely FP if the text is in a security tutorial or research paper discussing injection techniques as examples, not in an active skill description.

HIGH
Private data read with code execution
L82

Skill can read private data AND execute arbitrary code. This combination enables credential theft via dynamic code.

[reads_private_data] ~/.ssh/id_rsa + [executes_code] eval(
FIX

Add input validation between the user-controlled data source and the security-sensitive sink (e.g., file writes, command execution). Implement allowlisting for acceptable input patterns.

FP?

Likely FP if the user input passes through explicit validation or sanitization before reaching the sensitive operation, and the taint tracker missed the sanitization step.