Chaining Abuse
High
- Category
- Tool Misuse
- Content
code=$(curl -sS -m 60 -o "$tmp" -w '%{http_code}' -X "$method" "$BASE_URL$path" \ -H "Authorization: Bearer ${OVERWING_API_KEY:-}" -H "Accept: application/json" -H "User-Agent: overwing-skill/1.0 (openclaw)") fi if [ "${code:0:1}" = "2" ]; then cat "$tmp"; echo; rm -f "$tmp"; return 0; fi cat "$tmp" >&2; echo >&2; rm -f "$tmp"; return 1 }- Confidence
- 75% confidence
- Finding
- Tool calls are chained to bypass individual safety checks or escalate capabilities beyond what any single tool call would allow.
