# Cleartext Network Traffic

> Detects unencrypted HTTP connections for transmitting sensitive data, credentials, or API calls.

- Skill: `zakirkun/cleartext-network-traffic` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add zakirkun/cleartext-network-traffic`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zakirkun/cleartext-network-traffic/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: zakirkun (https://skillmd.com/u/zakirkun)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zakirkun/cleartext-network-traffic

---


# Cleartext Network Traffic

## Overview
Sending data over HTTP (not HTTPS) exposes it to eavesdropping, especially on:
- Public WiFi networks
- ISP-level interception
- Corporate proxies
- Nation-state adversaries

Sensitive operations that must use HTTPS:
- Login and authentication
- API calls with tokens or session cookies
- Payment and financial transactions
- Personal data transmission

## Detection Strategy
- HTTP URLs hardcoded for API endpoints
- HTTP clients configured without TLS
- Mixed content: HTTPS page loading resources over HTTP

## Remediation
- Use HTTPS for all network communication
- Enable HSTS to prevent downgrade attacks
- Add HTTP→HTTPS redirect at server level

