de050e09e188e60f

Seen (all time)
(past week)
< 100 times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
32983 / 449630
-1 / 11858
TLS VersionTLS 1.0
Handshake VersionTLS 1.0
Cipher Suites
exact match
TLS_PSK_WITH_NULL_SHA256 (0x00b0)
TLS_RSA_PSK_WITH_NULL_SHA (0x002e)
TLS_DHE_PSK_WITH_NULL_SHA (0x002d)
TLS_PSK_WITH_NULL_SHA (0x002c)
TLS_RSA_WITH_NULL_SHA (0x0002)
TLS_RSA_WITH_NULL_MD5 (0x0001)
(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
supported_groups (0x000a)
ec_point_formats (0x000b)
encrypt_then_mac (0x0016)
extended_master_secret (0x0017)
padding (0x0015)
Supported Groups
exact match
secp384r1 (0x0018)
ffdhe2048 (0x0100)
ffdhe3072 (0x0101)
secp192r1 (0x0013)
ffdhe4096 (0x0102)
ffdhe6144 (0x0103)
ffdhe8192 (0x0104)
Signature Algorithms
exact match
EC Point Formatsuncompressed (0x00)
ALPN
Key Share
PSK Key Exchange Modes
Supported Versions
Certificate Compression Algorithms
Record Size Limit
nid-2448535386804656625
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{
		0x00b0,
		0x002e,
		0x002d,
		0x002c,
		0x0002,
		0x0001,
		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 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