3e823b6426dfdbe7

Seen (all time)
(past week)
5.9K times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
4803 / 449905
2991 / 10999
TLS VersionTLS 1.0
Handshake VersionTLS 1.0
Cipher Suites
exact match
TLS_DH_anon_WITH_RC4_128_MD5 (0x0018)
TLS_EMPTY_RENEGOTIATION_INFO_SCSV (0x00ff)
Compression MethodsDEFLATE (0x01)
null (0x00)
Extensions
exact match
server_name (0x0000)
SessionTicket TLS (0x0023)
heartbeat (0x000f)
Supported Groups
exact match
Signature Algorithms
exact match
EC Point Formats
ALPN
Key Share
PSK Key Exchange Modes
Supported Versions
Certificate Compression Algorithms
Record Size Limit
nid4504227878658890727
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{
		0x0018,
		0x00ff,
	},
	CompressionMethods: []byte{
		0x01
		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