browser-relay-xiaohongshu

clawhub:browser-relay-xiaohongshu

View source
A
100/100

First Seen

Feb 19, 2026

Last Scanned

Feb 22, 2026

Findings

5

Score

100/100

LOW 5

Findings (5)

LOW
Shell script file execution
L71

Detects execution of shell script files via bash/sh command or direct invocation

./start.sh
FIX

Replace direct shell script execution with a language-native implementation or a sandboxed executor. If shell scripts must run, restrict them to a vetted allowlist with integrity checks.

FP?

Likely FP if the match references running a script that is part of the skill's own repository (e.g., ./setup.sh) with clear, auditable contents.

LOW
Shell script file execution
L112

Detects execution of shell script files via bash/sh command or direct invocation

bash start.sh
FIX

Replace direct shell script execution with a language-native implementation or a sandboxed executor. If shell scripts must run, restrict them to a vetted allowlist with integrity checks.

FP?

Likely FP if the match references running a script that is part of the skill's own repository (e.g., ./setup.sh) with clear, auditable contents.

LOW
Non-localhost remote MCP server URL
L141

Detects MCP server configurations connecting to non-localhost remote URLs

"url":"https://www.xiaohongshu.com"
FIX

Change the MCP server URL to localhost or a trusted internal endpoint. If a remote server is required, verify the domain ownership and use HTTPS with certificate validation.

FP?

Likely FP if the URL points to example.com, a documentation domain, or a well-known SaaS API endpoint (e.g., api.openai.com).

LOW
Non-localhost remote MCP server URL
L247

Detects MCP server configurations connecting to non-localhost remote URLs

"url":"https://example.com"
FIX

Change the MCP server URL to localhost or a trusted internal endpoint. If a remote server is required, verify the domain ownership and use HTTPS with certificate validation.

FP?

Likely FP if the URL points to example.com, a documentation domain, or a well-known SaaS API endpoint (e.g., api.openai.com).

LOW
Shell script file execution
L270

Detects execution of shell script files via bash/sh command or direct invocation

bash start.sh
FIX

Replace direct shell script execution with a language-native implementation or a sandboxed executor. If shell scripts must run, restrict them to a vetted allowlist with integrity checks.

FP?

Likely FP if the match references running a script that is part of the skill's own repository (e.g., ./setup.sh) with clear, auditable contents.