cloudflare-d1

skills-sh:jezweb_claude-skills__cloudflare-d1

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

2

Score

77/100

HIGH 1
MEDIUM 1

Findings (2)

HIGH
Destructive actions with code execution
L84

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

[destructive] DROP
TABLE + [executes_code] exec(
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).

MEDIUM
Dynamic code evaluation
L638

Detects eval() or exec() used for dynamic code execution

exec
(
'
FIX

Replace eval()/exec() with a safer alternative such as json.loads(), ast.literal_eval(), or a purpose-built parser.

FP?

Likely FP if the matched text contains 'exec' as part of a word (e.g., 'execute', 'execution') rather than an actual eval() or exec() call.