a1ddc6cab08c5331

Seen (all time)
(past week)
< 100 times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
23062 / 449629
-1 / 11858
TLS VersionTLS 1.0
Handshake VersionTLS 1.0
Cipher Suites
exact match
TLS_RSA_EXPORT1024_WITH_RC4_56_MD5 (0x0060)
TLS_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 (0x0061)
TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA (0x0062)
TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA (0x0063)
TLS_RSA_EXPORT1024_WITH_RC4_56_SHA (0x0064)
TLS_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA (0x0065)
TLS_DHE_DSS_WITH_RC4_128_SHA (0x0066)
TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 (0x0067)
TLS_DH_DSS_WITH_AES_256_CBC_SHA256 (0x0068)
TLS_DH_RSA_WITH_AES_256_CBC_SHA256 (0x0069)
TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 (0x006a)
TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 (0x006b)
TLS_DH_anon_WITH_AES_128_CBC_SHA256 (0x006c)
TLS_DH_anon_WITH_AES_256_CBC_SHA256 (0x006d)
(0x006e)
(0x006f)
(0x0070)
(0x0071)
(0x0072)
(0x0073)
(0x0074)
(0x0075)
(0x0076)
(0x0077)
(0x0078)
(0x0079)
(0x007a)
(0x007b)
(0x007c)
(0x007d)
(0x007e)
(0x007f)
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-6783046889902419151
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{
		0x0060,
		0x0061,
		0x0062,
		0x0063,
		0x0064,
		0x0065,
		0x0066,
		0x0067,
		0x0068,
		0x0069,
		0x006a,
		0x006b,
		0x006c,
		0x006d,
		0x006e,
		0x006f,
		0x0070,
		0x0071,
		0x0072,
		0x0073,
		0x0074,
		0x0075,
		0x0076,
		0x0077,
		0x0078,
		0x0079,
		0x007a,
		0x007b,
		0x007c,
		0x007d,
		0x007e,
		0x007f,
	},
	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