2cf52bc06bac67c9

Seen (all time)
(past week)
< 100 times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
18269 / 449627
-1 / 11858
TLS VersionTLS 1.2
Handshake VersionTLS 1.2
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)
signature_algorithms (0x000d)
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
rsa_pkcs1_sha512 (0x0601)
dsa_sha512 (0x0602)
ecdsa_secp521r1_sha512 (0x0603)
rsa_pkcs1_sha384 (0x0501)
dsa_sha384 (0x0502)
ecdsa_secp384r1_sha384 (0x0503)
rsa_pkcs1_sha256 (0x0401)
dsa_sha256 (0x0402)
ecdsa_secp256r1_sha256 (0x0403)
rsa_sha224 (0x0301)
dsa_sha224 (0x0302)
ecdsa_sha224 (0x0303)
rsa_pkcs1_sha1 (0x0201)
dsa_sha1 (0x0202)
ecdsa_sha1 (0x0203)
EC Point Formatsuncompressed (0x00)
ALPN
Key Share
PSK Key Exchange Modes
Supported Versions
Certificate Compression Algorithms
Record Size Limit
nid3239543612403115977
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{
		&tls.SNIExtension{},
		&tls.SignatureAlgorithmsExtension{SupportedSignatureAlgorithms: []tls.SignatureScheme{
			tls.PKCS1WithSHA512,
			0x0602,
			tls.ECDSAWithP521AndSHA512,
			tls.PKCS1WithSHA384,
			0x0502,
			tls.ECDSAWithP384AndSHA384,
			tls.PKCS1WithSHA256,
			0x0402,
			tls.ECDSAWithP256AndSHA256,
			0x0301,
			0x0302,
			0x0303,
			tls.PKCS1WithSHA1,
			0x0202,
			tls.ECDSAWithSHA1,
		},},
		&tls.SupportedCurvesExtension{[]tls.CurveID{
			0x0001,
			0x0002,
			0x0003,
			0x0004,
			0x0005,
			0x0006,
			0x0007,
			0x0008,
			0x0009,
			0x000a,
			0x000b,
			0x000c,
			0x000d,
			0x000e,
			0x000f,
			0x0010,
			0x0011,
			0x0012,
			0x0013,
			0x0014,
			0x0015,
			0x0016,
			tls.CurveP256,
			tls.CurveP384,
			tls.CurveP521,
			0x001a,
			0x001b,
			0x001c,
			tls.X25519,
			0x001e,
			0x001f,
			0x0020,
		}},
		&tls.SupportedPointsExtension{SupportedPoints: []byte{
			0x00, // pointFormatUncompressed
		}},
	},
}
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