ec82b743173c7aac

Seen (all time)
(past week)
< 100 times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
51827 / 449629
-1 / 11858
TLS VersionTLS 1.2
Handshake VersionTLS 1.2
Cipher Suites
exact match
(0x9acd)
(0x1cde)
(0x0f53)
(0xbdaa)
(0xfef8)
(0xa178)
(0xeec2)
(0x55df)
(0xbee5)
(0xbaf1)
(0xe78f)
(0xc115)
(0x4253)
(0xcb1c)
(0x48de)
(0x15bd)
(0xce58)
(0xece4)
(0xcfca)
(0x6ec3)
(0x986b)
(0x34ed)
Compression Methodsnull (0x00)
Extensions
exact match
server_name (0x0000)
ec_point_formats (0x000b)
signature_algorithms (0x000d)
application_layer_protocol_negotiation (0x0010)
Supported Groups
exact match
Signature Algorithms
exact match
?_? (0xac71)
?_? (0x6d39)
?_? (0x0e2a)
?_sha512 (0x06d0)
?_? (0x8234)
EC Point Formatsuncompressed (0x00)
ALPNh2
http/1.1
Key Share
PSK Key Exchange Modes
Supported Versions
Certificate Compression Algorithms
Record Size Limit
nid-1404358635005642068
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{
		0x9acd,
		0x1cde,
		0x0f53,
		0xbdaa,
		0xfef8,
		0xa178,
		0xeec2,
		0x55df,
		0xbee5,
		0xbaf1,
		0xe78f,
		0xc115,
		0x4253,
		0xcb1c,
		0x48de,
		0x15bd,
		0xce58,
		0xece4,
		0xcfca,
		0x6ec3,
		0x986b,
		0x34ed,
	},
	CompressionMethods: []byte{
		0x00, // compressionNone
	},
	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