a5b7582f7fcd93b6

Seen (all time)
(past week)
< 100 times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
22726 / 449908
-1 / 10999
TLS VersionTLS 1.0
Handshake VersionTLS 1.0
Cipher Suites
exact match
(0x00e0)
(0x00e1)
(0x00e2)
(0x00e3)
(0x00e4)
(0x00e5)
(0x00e6)
(0x00e7)
(0x00e8)
(0x00e9)
(0x00ea)
(0x00eb)
(0x00ec)
(0x00ed)
(0x00ee)
(0x00ef)
(0x00f0)
(0x00f1)
(0x00f2)
(0x00f3)
(0x00f4)
(0x00f5)
(0x00f6)
(0x00f7)
(0x00f8)
(0x00f9)
(0x00fa)
(0x00fb)
(0x00fc)
(0x00fd)
(0x00fe)
TLS_EMPTY_RENEGOTIATION_INFO_SCSV (0x00ff)
Compression Methodsnull (0x00)
Extensions
exact match
server_name (0x0000)
supported_groups (0x000a)
ec_point_formats (0x000b)
Supported Groups
exact match
sect163k1 (0x0001)
sect163r1 (0x0002)
sect163r2 (0x0003)
sect193r1 (0x0004)
sect193r2 (0x0005)
sect233k1 (0x0006)
sect233r1 (0x0007)
sect239k1 (0x0008)
sect283k1 (0x0009)
sect283r1 (0x000a)
sect409k1 (0x000b)
sect409r1 (0x000c)
sect571k1 (0x000d)
sect571r1 (0x000e)
secp160k1 (0x000f)
secp160r1 (0x0010)
secp160r2 (0x0011)
secp192k1 (0x0012)
secp192r1 (0x0013)
secp224k1 (0x0014)
secp224r1 (0x0015)
secp256k1 (0x0016)
secp256r1 (0x0017)
secp384r1 (0x0018)
secp521r1 (0x0019)
brainpoolP256r1 (0x001a)
brainpoolP384r1 (0x001b)
brainpoolP512r1 (0x001c)
x25519 (0x001d)
x448 (0x001e)
(0x001f)
(0x0020)
Signature Algorithms
exact match
EC Point Formatsuncompressed (0x00)
ALPN
Key Share
PSK Key Exchange Modes
Supported Versions
Certificate Compression Algorithms
Record Size Limit
nid-6505634175682505802
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{
		0x00e0,
		0x00e1,
		0x00e2,
		0x00e3,
		0x00e4,
		0x00e5,
		0x00e6,
		0x00e7,
		0x00e8,
		0x00e9,
		0x00ea,
		0x00eb,
		0x00ec,
		0x00ed,
		0x00ee,
		0x00ef,
		0x00f0,
		0x00f1,
		0x00f2,
		0x00f3,
		0x00f4,
		0x00f5,
		0x00f6,
		0x00f7,
		0x00f8,
		0x00f9,
		0x00fa,
		0x00fb,
		0x00fc,
		0x00fd,
		0x00fe,
		0x00ff,
	},
	CompressionMethods: []byte{
		0x00, // compressionNone
	},
	Extensions: []tls.TLSExtension{
code generation error: short sig_algs	},
}
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