External Transmission
Medium
- Category
- Data Exfiltration
- Content
API_BASE = "https://api.heybossai.com/v1" def pilot(body: dict) -> dict: r = requests.post( f"{API_BASE}/pilot", headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"}, json=body,- Confidence
- 95% confidence
- Finding
- The skill explicitly sends user-supplied prompts, research queries, scraped content, or generated code requests to an external third-party API endpoint using an API key. In the context of a self-writing, self-modifying agent, this creates a real data exfiltration and privacy boundary issue because potentially sensitive workspace, prompt, or internal failure data may be transmitted off-host to an external service.
