7530a164baa607af

Seen (all time)
(past week)
5.9K times (0.00%)
< 100 times (0.00%)
Rank (all time)
(past week)
4560 / 449632
3331 / 11858
TLS VersionTLS 1.0
Handshake VersionTLS 1.0
Cipher Suites
exact match
TLS_RSA_WITH_NULL_SHA (0x0002)
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
nid8444426755319924655
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{
		0x0002,
		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