Metadata

ID: javascript-browser-security/insecure-websocket

Language: JavaScript

Severity: Warning

Category: Security

CWE: 319

Description

Always use secure websocket communication. When using websocket, use addresses that are SSL-enabled.

Non-Compliant Code Examples

const client = new WebSocket('ws://app.domain.tld')

Compliant Code Examples

const client = new WebSocket('wss://app.domain.tld')