securityreview

clawhub:securityreview

View source
D
45/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

4

Score

45/100

CRITICAL 1
HIGH 2
LOW 1

Findings (4)

CRITICAL
Private key block
L32

Detects PEM-encoded private keys

-----BEGIN RSA PRIVATE KEY-----
FIX

Remove the private key block from the skill definition. Store private keys in a secrets manager or encrypted volume and reference them via environment variables.

FP?

Likely FP if the match is a documentation example showing the format of a PEM block without a real key body.

HIGH
Destructive actions with code execution
L101

Skill has destructive capabilities AND can execute arbitrary code. This combination enables ransomware-like attacks.

[destructive] rm -rf / + [executes_code] eval(
FIX

Isolate security-sensitive operations from untrusted data flows. Use separate execution contexts or privilege levels for operations that handle both user input and sensitive resources.

FP?

Likely FP if the toxic flow analysis connected two unrelated code paths, or if the data undergoes transformation that removes the taint (e.g., parsed as a known enum value).

HIGH
AWS access key
L40

Detects AWS access key IDs

AKIAIOSFODNN7EXAMPLE
FIX

Remove the AWS access key from the skill definition and use environment variables or IAM roles instead. Rotate the exposed key immediately via the AWS console.

FP?

Likely FP if the matched string is a placeholder (e.g., AKIAEXAMPLE), a documentation example, or a test fixture key that is not valid.

LOW
Python subprocess execution
L103

Detects Python subprocess and os.system calls for command execution in skill descriptions

os.system(
FIX

Pass arguments as an explicit list instead of a shell string. Set shell=False and validate all user-supplied values before inclusion.

FP?

Likely FP if the match is in documentation explaining Python subprocess usage or in a description mentioning it as a topic.