Ship Position
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
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.
Your HiFleet API token could be visible to network observers or intermediary logs and could potentially be used to access HiFleet under your account.
When a HiFleet token is configured, this helper appends it to a plain-HTTP query string for strait traffic; the main flow passes the token whenever it exists, not only when a long date range requires authentication.
STRAIT_TRAFFIC_URL = "http://api.hifleet.com/position/statisticzonetraffic" ... if usertoken: params["usertoken"] = usertoken ... data = get_strait_traffic(oid, start_str, end_str, i18n, token)
Use an HTTPS endpoint if HiFleet supports it, avoid sending the token for recent 7-day strait queries where it is not needed, and use a dedicated token that can be rotated.
