060101-http-security — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited 060101-http-security (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Security is applied at three layers:
1. Edge/Proxy Layer ← Rate limiting, CSP, security headers, IP deny
2. Application Layer ← Auth rate limit, session validation, input sanitization
3. Infrastructure Layer ← Auto-protection, firewall, DDoS mitigationApplied before requests reach application code.
x-forwarded-for → x-real-ip)Request → match route tier → ratelimit.limit(ip) → pass or 429
↓ (timeout → allow on failure)
Application handlerDynamic CSP built from environment variables:
| Directive | Purpose | Configurable via |
|---|---|---|
script-src | Allowed JS sources | CSP_SCRIPT_SRC_DOMAINS |
style-src | Allowed CSS sources | CSP_STYLE_SRC_DOMAINS |
img-src | Allowed image sources | CSP_IMG_SRC_DOMAINS |
font-src | Allowed font sources | CSP_FONT_SRC_DOMAINS |
connect-src | Allowed API/WS connections | CSP_CONNECT_SRC_DOMAINS |
frame-src | Allowed iframe sources | CSP_FRAME_SRC_DOMAINS |
| Header | Value |
|---|---|
X-Content-Type-Options | nosniff |
X-Frame-Options | SAMEORIGIN |
X-XSS-Protection | 1; mode=block |
Referrer-Policy | strict-origin-when-cross-origin |
Permissions-Policy | camera=(self), microphone=(self), geolocation=(self) |
Strict-Transport-Security | max-age=31536000; includeSubDomains; preload |
If the rate limiting service is unreachable:
# Test security headers
curl -I https://example.com | grep -i "x-\|strict-\|referrer-\|permissions-"
# Test rate limiting
for i in $(seq 1 20); do curl -s -o /dev/null -w "%{http_code}\n" https://example.com/api/endpoint; done~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.