idfm-journey-skill

clawhub:idfm-journey-skill

View source
C
50/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

2

Score

50/100

CRITICAL 2

Findings (2)

CRITICAL
Text combines credential access with network transmission
L1

Text combines credential access with network transmission

Do not override --base-url unless you fully trust the endpoint.
The script sends apikey: <IDFM_PRIM_API_KEY> to whatever base URL you provide, so a malicious URL would exfiltrate your key.
FIX

Remove the combination of credential access and network transmission from the tool. If the tool needs credentials, access them via a secrets manager and never transmit them externally.

FP?

Likely FP if the tool legitimately uses credentials for API authentication (e.g., reading an API key to make authenticated requests to the same service).

CRITICAL
Instruction override combined with dangerous operations
L1

Instruction override combined with dangerous operations

Do not override --base-url unless you fully trust the endpoint.
The script sends apikey: <IDFM_PRIM_API_KEY> to whatever base URL you provide, so a malicious URL would exfiltrate your key.
FIX

Remove language that attempts to override safety guidelines or bypass system-level controls. This pattern is a strong indicator of a jailbreak attempt.

FP?

Likely FP if the matched text is in a security research document or educational content clearly marked as an example rather than an active payload.