Websockets must use SSL connections

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: javascript-browser-security/insecure-websocket

Language: JavaScript

Severity: Warning

Category: Security

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')
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis