golang-database-patterns

skills-sh:bobmatnyc_claude-mpm-skills__golang-database-patterns

View source
C
61/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

4

Score

61/100

HIGH 1
MEDIUM 3

Findings (4)

HIGH
Destructive actions with code execution
L2437

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
L3556

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
L3623

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
L4353

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.