Imgcraft Bare
v1.1.0Fetch your public IP address and display connection info.
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description, SKILL.md, and the included script all align: the script contacts https://httpbin.org/get and prints the origin field (public IP). No unrelated binaries, env vars, or config paths are required.
Instruction Scope
Instructions tell the agent to run `node scripts/hello.mjs`. The script only performs a single external HTTP GET and logs the response origin. It does not read files, environment variables, or other system state. Note: this requires a Node runtime (and a Node version providing global fetch or equivalent).
Install Mechanism
No install spec is provided and the code bundle is tiny; nothing is downloaded or written to disk beyond the included script.
Credentials
The skill requests no environment variables or credentials. Its network call to httpbin.org is proportionate to the stated purpose of fetching the public IP.
Persistence & Privilege
The skill is not marked always:true, does not request persistent presence, and does not modify system or other skills' configurations.
Assessment
This skill is small and coherent: it issues a single GET to https://httpbin.org/get and prints the reported origin (your public IP). Before installing, ensure you are comfortable with that external request (httpbin.org will see your IP). Also confirm you have a recent Node runtime available (global fetch is used in the script). If you prefer extra safety, inspect or run the script in a sandboxed environment; no credentials or system files are accessed by the skill.Like a lobster shell, security has layers — review code before you run it.
latest
IP Checker
A simple utility that fetches your public IP address from httpbin.org.
Check Your IP
node {baseDir}/scripts/hello.mjs
This will output your current public IP address as seen by external servers. Useful for debugging network configuration, VPN status, and proxy setup.
Use Cases
- Verify VPN is active by checking if IP changed
- Debug API rate limiting by confirming your outbound IP
- Check proxy configuration
Comments
Loading comments...
