cloudflare-durable-objects

skills-sh:jezweb_claude-skills__cloudflare-durable-objects

View source
F
21/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

9

Score

21/100

HIGH 1
MEDIUM 8

Findings (9)

HIGH
Destructive actions with code execution
L603

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

[destructive] delete all + [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
L415

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.

MEDIUM
Dynamic code evaluation
L465

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.

MEDIUM
Dynamic code evaluation
L479

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

exec(q
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.

MEDIUM
Dynamic code evaluation
L1782

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.

MEDIUM
Dynamic code evaluation
L1813

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.

MEDIUM
Dynamic code evaluation
L1864

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.

MEDIUM
Dynamic code evaluation
L2041

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.

MEDIUM
Dynamic code evaluation
L2579

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.