suspicious.insecure_tls_verification
- Location
- scripts/train_query.js:21
- Finding
- HTTPS certificate verification is disabled.
AdvisoryAudited by Static analysis on May 10, 2026.
Detected: suspicious.insecure_tls_verification
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.
Someone able to intercept the network connection could modify train station or availability results, potentially misleading travel decisions.
The script disables HTTPS certificate verification when fetching 12306 station data, and the ticket-query options also set rejectUnauthorized: false. This makes the external data source less trustworthy.
https.get(url, { rejectUnauthorized: false }, (res) => {Remove rejectUnauthorized: false and use normal HTTPS certificate validation. Avoid using this script for account login or purchases unless the TLS handling is fixed.