857cf9371dde63a6

Seen (all time)
(past week)
< 100 times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
25862 / 449905
-1 / 10999
TLS VersionTLS 1.1
Handshake VersionTLS 1.1
Cipher Suites
exact match
(0x00e8)
(0x00e7)
(0x00e6)
(0x00e5)
TLS_GOSTR341001_WITH_NULL_GOSTR3411 (0x0083)
TLS_GOSTR341094_WITH_NULL_GOSTR3411 (0x0082)
TLS_GOSTR341001_WITH_28147_CNT_IMIT (0x0081)
TLS_GOSTR341094_WITH_28147_CNT_IMIT (0x0080)
TLS_KRB5_EXPORT_WITH_RC4_40_MD5 (0x002b)
TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5 (0x002a)
TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 (0x0029)
TLS_KRB5_EXPORT_WITH_RC4_40_SHA (0x0028)
TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA (0x0027)
TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA (0x0026)
TLS_KRB5_WITH_IDEA_CBC_MD5 (0x0025)
TLS_KRB5_WITH_RC4_128_MD5 (0x0024)
TLS_KRB5_WITH_3DES_EDE_CBC_MD5 (0x0023)
TLS_KRB5_WITH_DES_CBC_MD5 (0x0022)
TLS_KRB5_WITH_IDEA_CBC_SHA (0x0021)
TLS_KRB5_WITH_RC4_128_SHA (0x0020)
TLS_KRB5_WITH_3DES_EDE_CBC_SHA (0x001f)
SSL_FORTEZZA_KEA_WITH_RC4_128_SHA (0x001e)
SSL_FORTEZZA_KEA_WITH_FORTEZZA_CBC_SHA (0x001d)
SSL_FORTEZZA_KEA_WITH_NULL_SHA (0x001c)
TLS_EMPTY_RENEGOTIATION_INFO_SCSV (0x00ff)
Compression Methodsnull (0x00)
DEFLATE (0x01)
Extensions
exact match
encrypt_then_mac (0x0016)
extended_master_secret (0x0017)
padding (0x0015)
Supported Groups
exact match
Signature Algorithms
exact match
EC Point Formats
ALPN
Key Share
PSK Key Exchange Modes
Supported Versions
Certificate Compression Algorithms
Record Size Limit
nid-8827907154433383514
Related
Labels
uTLS generated code
// import tls "github.com/refraction-networking/utls"
tcpConn, err := net.Dial("tcp", "tlsfingerprint.io:443")
if err != nil {
	fmt.Printf("net.Dial() failed: %+v\n", err)
	return
}

config := tls.Config{ServerName: "tlsfingerprint.io"}
// This fingerprint includes feature(s), not fully supported by TLS.
// uTLS client with this fingerprint will only be able to to talk to servers,
// that also do not support those features. 
tlsConn := tls.UClient(tcpConn, &tlsConfig, tls.HelloCustom)
clientHelloSpec := tls.ClientHelloSpec {
	CipherSuites: []uint16{
		0x00e8,
		0x00e7,
		0x00e6,
		0x00e5,
		0x0083,
		0x0082,
		0x0081,
		0x0080,
		0x002b,
		0x002a,
		0x0029,
		0x0028,
		0x0027,
		0x0026,
		0x0025,
		0x0024,
		0x0023,
		0x0022,
		0x0021,
		0x0020,
		0x001f,
		0x001e,
		0x001d,
		0x001c,
		0x00ff,
	},
	CompressionMethods: []byte{
		0x00, // compressionNone
		0x01
	},
	Extensions: []tls.TLSExtension{
code generation error: short curves	},
}
tlsConn.ApplyPreset(&clientHelloSpec)
        
n, err = tlsConn.Write([]byte("Hello, World!"))
// or tlsConn.Handshake() for better control

Times seen (per hour)

Percent seen (24 hour averaged)

User Agents