web-fetch
Pass
Audited by Gen Agent Trust Hub on Apr 30, 2026
Risk Level: SAFE
Full Analysis
- [REMOTE_CODE_EXECUTION]: Automated alerts regarding piped execution to Python were reviewed and found to be false positives. The skill uses
python3 -cwith locally defined, hardcoded scripts for HTML parsing and data extraction. This is a safe method of data processing that does not involve executing code from remote sources. - [COMMAND_EXECUTION]: The skill provides legitimate templates for using
curl,jq, andpython3to interact with web APIs and process content. All examples demonstrate secure usage, such as referencing environment variables for authentication rather than hardcoding secrets. - [PROMPT_INJECTION]: The skill handles untrusted web content, creating a surface for indirect prompt injection. 1. Ingestion points: Content is retrieved from arbitrary URLs using
curlandWebFetchinSKILL.md. 2. Boundary markers: None explicitly defined in the provided examples to distinguish fetched content from instructions. 3. Capability inventory: Usescurlfor network access andjq/python3for data processing. 4. Sanitization: The use ofWebFetchand custom Python parsers helps mitigate risks by stripping HTML and returning cleaned text or markdown.
Audit Metadata