Neomano Internet Speed (Download/Upload)

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: neomano-internet-speed Version: 0.1.0 The skill bundle is a legitimate utility for measuring internet speed using Cloudflare's public speed test endpoints. The Python script (scripts/speedtest.py) uses standard library functions to perform HTTP GET and POST requests and contains no evidence of data exfiltration, malicious execution, or prompt injection.

Findings (0)

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

Running the skill will transfer test data over the network and Cloudflare will see the request metadata such as the connecting IP address and user agent.

Why it was flagged

The script performs external download and upload requests to Cloudflare, with configurable byte counts. This is exactly what a speed test needs, but it does consume bandwidth.

Skill content
DOWN_URL = "https://speed.cloudflare.com/__down"; UP_URL = "https://speed.cloudflare.com/__up"; ap.add_argument("--download-bytes", type=int, default=25_000_000); ap.add_argument("--upload-bytes", type=int, default=5_000_000)
Recommendation

Use it only when you want a speed test, and keep the byte-size options reasonable on metered or bandwidth-limited connections.