Http Sec Audit

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.

What this means

Using the skill will make network requests to the URLs being audited, which may be logged by those sites or redirected elsewhere.

Why it was flagged

The script sends HTTP GET requests and follows redirects for user-supplied URLs. This is core to the header-audit purpose, but it can contact third-party or internal hosts if the user provides them.

Skill content
resp = requests.get(url, headers=headers, timeout=timeout, allow_redirects=True)
Recommendation

Use it only for websites you own or are authorized to test, and be cautious with internal or sensitive URLs.

What this means

Installing the dependency pulls code from the Python package ecosystem into the user's environment.

Why it was flagged

The skill discloses a manual Python dependency installation, but it does not pin a specific package version. This is common for a small script, but users should recognize it as a package-install step.

Skill content
pip install requests
Recommendation

Install dependencies in a trusted or isolated Python environment and consider pinning a known-good `requests` version if reproducibility matters.