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
- requests.post(f"{BASE}/arena/gomoku/matches/{match_id}/action", json=
