cross-site-scripting-and-html-injection-testing

skills-sh:sickn33_antigravity-awesome-skills__cross-site-scripting-and-html-injection-testing

View source
B
76/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

4

Score

76/100

MEDIUM 3
LOW 1

Findings (4)

MEDIUM
Dynamic code evaluation
L777

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

eval
(
'
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
L822

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

eval
(
a
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
Base64 encode and send
L945

Detects base64 encoding of content followed by transmission

btoa + fetch(
FIX

Block patterns that base64-encode data and immediately transmit it. If base64 encoding is needed, ensure the encoded data does not contain secrets and destinations are allowlisted.

FP?

Likely FP if base64 encoding is used for legitimate purposes like encoding images for display or constructing data URIs, with no network transmission.

LOW
Runtime URL controlling behavior
L263

Detects URLs fetched at runtime that control or influence agent behavior without pinning

load
https:// + settings
FIX

Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.

FP?

Likely FP if the URL in the match is a documentation link or example URL (e.g., example.com) rather than an actual runtime-fetched configuration endpoint.