| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- package fake
-
- import (
- "bytes"
- "crypto/hmac"
- "crypto/sha256"
- "crypto/subtle"
- "encoding/binary"
- "errors"
- "fmt"
- "io"
- "net"
- "slices"
- "time"
- )
-
- const (
- TypeHandshakeClient = 0x01
-
- RandomLen = 32
- // record_type(1) + version(2) + size(2) + handshake_type(1) + uint24_length(3) + client_version(2)
- RandomOffset = 1 + 2 + 2 + 1 + 3 + 2
-
- // https://datatracker.ietf.org/doc/html/rfc8701#name-grease-values
- // https://medium.com/asecuritysite-when-bob-met-alice/in-cybersecurity-what-is-grease-9f8850558dea
- GreaseMask = 0x0f0f
- GreaseValueType = 0x0a0a
-
- sniDNSNamesListType = 0
- )
-
- var (
- emptyRandom = [RandomLen]byte{}
- extTypeSNI = [2]byte{}
-
- ErrCannotFindCipher = errors.New("cannot find a cipher")
- )
-
- type ClientHello struct {
- Random [RandomLen]byte
- SessionID []byte
- CipherSuite uint16
- }
-
- func ReadClientHello(
- conn net.Conn,
- secret []byte,
- hostname string,
- tolerateTimeSkewness time.Duration,
- ) (*ClientHello, error) {
- // This is how FakeTLS is organized:
- // 1. We create sha256 HMAC with a given secret
- // 2. We dump there a whole TLS frame except of the fact that random
- // is filled with all zeroes
- // 3. Digest is computed. This digest should be XORed with
- // original client random
- // 4. New digest should be all 0 except of last 4 bytes
- // 5. Last 4 bytes are little endian uint32 of UNIX timestamp when
- // this message was created.
- clientHelloCopy, handshakeReader, err := parseClientHello(conn)
- if err != nil {
- return nil, fmt.Errorf("cannot read client hello: %w", err)
- }
-
- hello, err := parseHandshake(handshakeReader)
- if err != nil {
- return nil, fmt.Errorf("cannot parse handshake: %w", err)
- }
-
- sniHostnames, err := parseSNI(handshakeReader)
- if err != nil {
- return nil, fmt.Errorf("cannot parse SNI: %w", err)
- }
-
- if !slices.Contains(sniHostnames, hostname) {
- return nil, fmt.Errorf("cannot find %s in %v", hostname, sniHostnames)
- }
-
- digest := hmac.New(sha256.New, secret)
- // we write a copy of the handshake with client random all nullified.
- digest.Write(clientHelloCopy.Next(RandomOffset))
- clientHelloCopy.Next(RandomLen)
- digest.Write(emptyRandom[:])
- digest.Write(clientHelloCopy.Bytes())
-
- computed := digest.Sum(nil)
-
- for i := range RandomLen {
- computed[i] ^= hello.Random[i]
- }
-
- if subtle.ConstantTimeCompare(emptyRandom[:RandomLen-4], computed[:RandomLen-4]) != 1 {
- return nil, ErrBadDigest
- }
-
- timestamp := int64(binary.LittleEndian.Uint32(computed[RandomLen-4:]))
- createdAt := time.Unix(timestamp, 0)
-
- if tdiff := time.Since(createdAt).Abs(); tdiff > tolerateTimeSkewness {
- return nil, fmt.Errorf("timestamp %q is too old %s", createdAt, tdiff)
- }
-
- return hello, nil
- }
-
- func parseHandshake(r io.Reader) (*ClientHello, error) {
- // A protocol version of "3,3" (meaning TLS 1.2) is given.
- header := [2]byte{}
-
- if _, err := io.ReadFull(r, header[:]); err != nil {
- return nil, fmt.Errorf("cannot read client version: %w", err)
- }
-
- hello := &ClientHello{}
-
- if _, err := io.ReadFull(r, hello.Random[:]); err != nil {
- return nil, fmt.Errorf("cannot read client random: %w", err)
- }
-
- if _, err := io.ReadFull(r, header[:1]); err != nil {
- return nil, fmt.Errorf("cannot read session ID length: %w", err)
- }
-
- hello.SessionID = make([]byte, int(header[0]))
-
- if _, err := io.ReadFull(r, hello.SessionID); err != nil {
- return nil, fmt.Errorf("cannot read session id: %w", err)
- }
-
- if _, err := io.ReadFull(r, header[:]); err != nil {
- return nil, fmt.Errorf("cannot read cipher suite length: %w", err)
- }
-
- cipherSuiteLen := int64(binary.BigEndian.Uint16(header[:]))
-
- // Pick the first non-GREASE cipher suite from the list.
- // Real TLS servers never select GREASE values (RFC 8701, pattern 0x?a?a),
- // so echoing them back is a trivial DPI fingerprint.
- // cipherSuiteLen is in bytes; each cipher suite is 2 bytes.
- for range cipherSuiteLen / 2 {
- if _, err := io.ReadFull(r, header[:]); err != nil {
- return nil, fmt.Errorf("cannot read cipher suite: %w", err)
- }
-
- if hello.CipherSuite != 0 {
- // do not forget we have to scan until the end
- continue
- }
-
- if cs := binary.BigEndian.Uint16(header[:]); cs&GreaseMask != GreaseValueType {
- hello.CipherSuite = cs
- }
- }
-
- if hello.CipherSuite == 0 {
- return nil, ErrCannotFindCipher
- }
-
- if _, err := io.ReadFull(r, header[:1]); err != nil {
- return nil, fmt.Errorf("cannot read compression methods length: %w", err)
- }
-
- if _, err := io.CopyN(io.Discard, r, int64(header[0])); err != nil {
- return nil, fmt.Errorf("cannot skip compression methods: %w", err)
- }
-
- return hello, nil
- }
-
- func parseSNI(r io.Reader) ([]string, error) {
- header := [2]byte{}
-
- if _, err := io.ReadFull(r, header[:]); err != nil {
- return nil, fmt.Errorf("cannot read length of TLS extensions: %w", err)
- }
-
- extensionsLength := int64(binary.BigEndian.Uint16(header[:]))
- buf := &bytes.Buffer{}
- buf.Grow(int(extensionsLength))
-
- if _, err := io.CopyN(buf, r, extensionsLength); err != nil {
- return nil, fmt.Errorf("cannot read extensions: %w", err)
- }
-
- for buf.Len() > 0 {
- // 00 00 - assigned value for extension "server name"
- // 00 18 - 0x18 (24) bytes of "server name" extension data follows
- // 00 16 - 0x16 (22) bytes of first (and only) list entry follows
- // 00 - list entry is type 0x00 "DNS hostname"
- // 00 13 - 0x13 (19) bytes of hostname follows
- // 65 78 61 ... 6e 65 74 - "example.ulfheim.net"
-
- // 00 00 - assigned value for extension "server name"
- extTypeB := buf.Next(2)
- if len(extTypeB) != 2 {
- return nil, fmt.Errorf("cannot read extension type: %v", extTypeB)
- }
-
- // 00 18 - 0x18 (24) bytes of "server name" extension data follows
- lengthB := buf.Next(2)
- if len(lengthB) != 2 {
- return nil, fmt.Errorf("cannot read extension %v length: %v", extTypeB, lengthB)
- }
- length := int(binary.BigEndian.Uint16(lengthB))
-
- extDataB := buf.Next(length)
- if len(extDataB) != length {
- return nil, fmt.Errorf("cannot read extension %v data: len %d != %d", extTypeB, length, len(extDataB))
- }
-
- if !bytes.Equal(extTypeB, extTypeSNI[:]) {
- continue
- }
-
- buf.Reset()
- buf.Write(extDataB)
-
- // 00 16 - 0x16 (22) bytes of first (and only) list entry follows
- lengthB = buf.Next(2)
- if len(lengthB) != 2 {
- return nil, fmt.Errorf("cannot read the length of the SNI record: %v", lengthB)
- }
-
- length = int(binary.BigEndian.Uint16(lengthB))
- if length == 0 {
- return nil, nil
- }
-
- listType, err := buf.ReadByte()
- if err != nil {
- return nil, fmt.Errorf("cannot read SNI list type: %w", err)
- }
-
- // 00 - list entry is type 0x00 "DNS hostname"
- if listType != sniDNSNamesListType {
- return nil, fmt.Errorf("incorrect SNI list type %#x", listType)
- }
-
- names := []string{}
-
- for buf.Len() > 0 {
- // 00 13 - 0x13 (19) bytes of hostname follows
- lengthB = buf.Next(2)
- if len(lengthB) != 2 {
- return nil, fmt.Errorf("incorrect length of the hostname: %v", lengthB)
- }
- length = int(binary.BigEndian.Uint16(lengthB))
-
- name := buf.Next(length)
- if len(name) != length {
- return nil, fmt.Errorf("incorrect length of SNI hostname: len %d != %d", length, len(name))
- }
-
- names = append(names, string(name))
- }
-
- return names, nil
- }
-
- return nil, nil
- }
|