External Transmission
Medium
- Category
- Data Exfiltration
- Content
def place_stone(match_id, x, y, comment=""): body = {"type": "place_stone", "x": x, "y": y, "comment": comment} r = requests.post(f"{BASE}/arena/gomoku/matches/{match_id}/action", json=body, headers=HEADERS) return r.json() ```- Confidence
- 84% confidence
- Finding
- The skill performs authenticated outbound POST requests that write game actions to a third-party service. Even though the endpoint is declared and appears in-scope for the feature, this is still security-relevant because it transmits user-controlled content and changes remote account state, creating risk of unintended external actions if invoked without clear consent and runtime restrictions.
