External Transmission
Medium
- Category
- Data Exfiltration
- Content
def research(query: str, effort: str = "standard") -> dict: resp = requests.post( "https://api.you.com/v1/research", headers={"X-API-Key": YDC_API_KEY, "Content-Type": "application/json"}, json={"input": query, "research_effort": effort},- Confidence
- 91% confidence
- Finding
- This duplicate finding points to the same outbound transmission in the Python Research API example. The risk is the same: user input is exfiltrated to an external provider and may include sensitive data if the integrator is not careful.
