From 35bc52e110632bdfa09a434ba3186ec4e1e16c15 Mon Sep 17 00:00:00 2001 From: Lem0nade <18480836+0xLem0nade@users.noreply.github.com> Date: Mon, 24 Oct 2022 19:26:37 +0330 Subject: [PATCH] Add uTLS fingerprint key for HTTP2 and Websocket client configs (#81) * Add uTLS fingerprint key to HTTP2 client * Add uTLS fingerprint key to Websocket-TLS client --- VMess-HTTP2/config_client.json | 5 ++++- VMess-Websocket-TLS/config_client.json | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/VMess-HTTP2/config_client.json b/VMess-HTTP2/config_client.json index dca39f7..c9243ce 100644 --- a/VMess-HTTP2/config_client.json +++ b/VMess-HTTP2/config_client.json @@ -50,7 +50,10 @@ }, "streamSettings": { "network": "http", - "security": "tls" + "security": "tls", + "tlsSettings": { + "fingerprint": "chrome" // uTLS fingerprint as traffic camouflage, can be either "chrome" or "firefox" or deleted entirely to disable uTLS + } }, "tag": "proxy" }, diff --git a/VMess-Websocket-TLS/config_client.json b/VMess-Websocket-TLS/config_client.json index ee49c62..0cf2bde 100644 --- a/VMess-Websocket-TLS/config_client.json +++ b/VMess-Websocket-TLS/config_client.json @@ -50,7 +50,10 @@ }, "streamSettings": { "network": "ws", - "security": "tls" + "security": "tls", + "tlsSettings": { + "fingerprint": "chrome" // uTLS fingerprint as traffic camouflage, can be either "chrome" or "firefox" or deleted entirely to disable uTLS + } }, "tag": "proxy" },