NZTA Traffic

Security checks across malware telemetry and agentic risk

Overview

This skill appears to do what it says: query public NZTA traffic data, with only minor notes about outbound API requests and undeclared command-line dependencies.

This looks safe for checking public New Zealand highway traffic information. Be aware that it sends your traffic query to trafficnz.info and requires common local tools that are not declared in the metadata.

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI02: Tool Misuse and Exploitation
Info
What this means

Your road, region, journey, or camera query is sent to the public trafficnz.info service.

Why it was flagged

This shows the skill uses curl to make outbound requests to the disclosed NZTA traffic endpoint. That is expected for a real-time traffic lookup skill and is not paired with credential access or local data collection.

Skill content
BASE_URL="https://trafficnz.info/service/traffic/rest/4" ... curl -sf --max-time "$TIMEOUT" -H "$ACCEPT" "${BASE_URL}/${path}"
Recommendation

Use it for public traffic lookups and avoid entering unrelated sensitive information as query parameters.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

The skill may fail or behave differently on systems without these tools installed.

Why it was flagged

The script depends on bash, curl, and python3, while the registry requirements declare no required binaries. This is an under-declared dependency issue, not evidence of malicious behavior.

Skill content
#!/bin/bash ... curl -sf --max-time "$TIMEOUT" ... echo "$result" | python3 -c
Recommendation

Before use, confirm that bash, curl, and python3 are available in the environment.