Ae1
High
- Category
- analysis-evasion
- Content
`tools/serper_search.js`
- Confidence
- 100% confidence
- Finding
- Referenced artifact was not completely inspected
Security audit
Security checks for vulnerabilities and agentic risk
This skill is a straightforward Serper.dev Google search integration with expected API-key and network use, though users should avoid sending sensitive queries to the search provider.
Install only if you are comfortable routing search queries through Serper.dev/Google and exposing a Serper API key to the runtime. Do not put secrets, private customer data, or confidential internal terms into search queries unless that external disclosure is acceptable for your environment.
`tools/serper_search.js`
const apiKey = process.env.SERPER_API_KEY;
if (!apiKey) {
throw new Error('SERPER_API_KEY not found in environment. Add it to your .env or TOOLS.md');
}
if (!params.q) {