ip lookup ( get ip )

PassAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward IP lookup skill that makes disclosed outbound requests to public IP and geolocation services, with no evidence of credential access, persistence, or destructive behavior.

This skill appears safe for its stated purpose. Install it if you are comfortable with the agent contacting public IP/geolocation providers and reporting the runtime public IP/location when asked.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The agent will make outbound web requests to determine and display the current public IP/location.

Why it was flagged

The skill directs the agent to run curl commands. This is expected for an IP lookup skill and is limited to listed lookup services.

Skill content
Run this command to get your public IP and location:

```bash
curl -s myip.ipip.net
```
Recommendation

Use it only for IP or location lookup requests, and be aware that the listed services will receive the request.

What this means

A third-party service may receive the runtime public IP address, and the agent may display approximate location and ISP/org details.

Why it was flagged

The detailed lookup sends the detected public IP to a third-party geolocation provider and returns location/ISP information.

Skill content
curl -s https://ipinfo.io/$(curl -s https://api.ipify.org)/json
Recommendation

Only invoke the skill when the user wants this lookup; prefer HTTPS endpoints where available.