openrouter-typescript-sdk
skills-sh:openrouterteam_agent-skills__openrouter-typescript-sdk
View sourceFirst Seen
Feb 18, 2026
Last Scanned
Feb 20, 2026
Findings
2
Score
92/100
Findings (2)
Detects eval() or exec() used for dynamic code execution
eval
(
e Replace eval()/exec() with a safer alternative such as json.loads(), ast.literal_eval(), or a purpose-built parser.
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.
Detects patterns where external API responses are used directly without validation or sanitization
API keys encrypted in your data + automatically use Validate and sanitize all data received from external APIs before using it in tool operations or agent prompts. Implement schema validation and treat API responses as untrusted input.
Likely FP if the match is a truncated table cell or documentation fragment that mentions API responses in a descriptive context, not actual unvalidated data processing.