External Script Fetching
High
- Category
- Supply Chain
- Content
" # Unleash API: list all toggles curl -s -H "Authorization: $UNLEASH_API_TOKEN" \ "$UNLEASH_URL/api/admin/features" | python3 -c " import sys, json data = json.load(sys.stdin)
- Confidence
- 90% confidence
- Finding
- The skill pipes data fetched from a remote Unleash endpoint directly into an inline Python interpreter for processing. Although the current script parses JSON rather than executing fetched code, this pattern normalizes remote-to-interpreter pipelines and increases risk from malicious endpoints, malformed responses, or unsafe future modifications.
