picqer-fulfillment

clawhub:picqer-fulfillment

View source
D
40/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

4

Score

40/100

HIGH 4

Findings (4)

HIGH
Shell metacharacters in MCP config args
L12

Detects shell metacharacters (pipes, backticks, subshells) in MCP server command arguments

"command": "dashboard.fetch", "filters": { "dateFrom": "2024-01-01", "dateTo": "2024-01-31", "picker": "", "client": "" } }`
FIX

Remove credentials (API keys, tokens, passwords) from MCP server configuration. Use environment variable references (e.g., ${API_KEY}) or a secrets manager instead of inline values.

FP?

Likely FP if the credential value is a placeholder (e.g., your-api-key-here, sk_test_xxx) in example configuration.

HIGH
Shell metacharacters in MCP config args
L17

Detects shell metacharacters (pipes, backticks, subshells) in MCP server command arguments

"command": "picklists.fetch", "filters": {} }`
FIX

Remove credentials (API keys, tokens, passwords) from MCP server configuration. Use environment variable references (e.g., ${API_KEY}) or a secrets manager instead of inline values.

FP?

Likely FP if the credential value is a placeholder (e.g., your-api-key-here, sk_test_xxx) in example configuration.

HIGH
Shell metacharacters in MCP config args
L22

Detects shell metacharacters (pipes, backticks, subshells) in MCP server command arguments

"command": "stock.fetch", "filters": {} }`
FIX

Remove credentials (API keys, tokens, passwords) from MCP server configuration. Use environment variable references (e.g., ${API_KEY}) or a secrets manager instead of inline values.

FP?

Likely FP if the credential value is a placeholder (e.g., your-api-key-here, sk_test_xxx) in example configuration.

HIGH
Shell metacharacters in MCP config args
L27

Detects shell metacharacters (pipes, backticks, subshells) in MCP server command arguments

"command": "revenue.fetch", "filters": {} }`
FIX

Remove credentials (API keys, tokens, passwords) from MCP server configuration. Use environment variable references (e.g., ${API_KEY}) or a secrets manager instead of inline values.

FP?

Likely FP if the credential value is a placeholder (e.g., your-api-key-here, sk_test_xxx) in example configuration.