External Transmission
Medium
- Category
- Data Exfiltration
- Content
if keyword: payload["searchKey"] = [keyword] try: resp = requests.post(url, headers=headers, json=payload, timeout=10) if resp.status_code == 200: data = resp.json() results = []- Confidence
- 78% confidence
- Finding
- The code performs an outbound request to a third-party service over plain HTTP, which exposes request contents and response data to interception or tampering by an on-path attacker. Even though the payload is low sensitivity, lack of transport security can enable manipulated announcement data, misleading links, or corrupted results to be returned to downstream users or agents.
