Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
2023-08-03 18:33:55 -06:00
.github/workflows refactor: remove redundancy and clean up 2023-08-03 18:33:14 -06:00
docs docs: minor adjustment 2023-08-03 18:33:55 -06:00
example new: uquic 2023-08-02 15:38:16 -06:00
fuzzing Merge branch 'quic-go:master' into uquic 2023-08-01 20:58:24 -06:00
http3 Merge pull request #1 from gaukas/uquic-dev 2023-08-02 16:11:09 -06:00
integrationtests Merge branch 'quic-go:master' into uquic 2023-08-01 20:58:24 -06:00
internal init: separate from quic-go tree 2023-08-03 18:18:56 -06:00
logging remove Tracer from Config, put ConnectionTracer constructor there 2023-05-02 15:56:49 +02:00
qlog remove Tracer from Config, put ConnectionTracer constructor there 2023-05-02 15:56:49 +02:00
quicvarint quicvarint: remove deprecated Write function (#3781) 2023-05-09 12:06:22 -07:00
.gitignore add common temporary file patterns to .gitignore 2020-11-30 12:59:35 +07:00
.golangci.yml use the new crypto/tls QUIC Transport (#3860) 2023-07-01 11:15:00 -07:00
buffer_pool.go pack packets into large buffers when GSO is available 2023-06-03 09:21:55 +03:00
buffer_pool_test.go introduce a buffer pool for large buffers (20k) 2023-06-02 18:35:02 +03:00
Changelog.md rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
client.go new: uquic 2023-08-02 15:38:16 -06:00
client_test.go impl: uquic with utls 2023-07-29 23:45:16 -06:00
closed_conn.go embed the packetInfo in the receivedPacket struct 2023-06-03 10:44:16 +03:00
closed_conn_test.go embed the packetInfo in the receivedPacket struct 2023-06-03 10:44:16 +03:00
codecov.yml use the new crypto/tls QUIC Transport (#3860) 2023-07-01 11:15:00 -07:00
config.go new: uquic 2023-08-02 15:38:16 -06:00
config_test.go config: handle overflows of stream and flow control limits (#3866) 2023-06-02 03:41:14 -07:00
conn_id_generator.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
conn_id_generator_test.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
conn_id_manager.go new: uquic 2023-08-02 15:38:16 -06:00
conn_id_manager_test.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
connection.go Merge pull request #1 from gaukas/uquic-dev 2023-08-02 16:11:09 -06:00
connection_test.go Merge branch 'quic-go:master' into uquic 2023-08-01 20:58:24 -06:00
connection_timer.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
connection_timer_test.go migrate to Ginkgo v2 2022-10-11 16:38:44 +04:00
crypto_stream.go use the new crypto/tls QUIC Transport (#3860) 2023-07-01 11:15:00 -07:00
crypto_stream_manager.go use a synchronous API for the crypto setup (#3939) 2023-07-21 10:00:42 -07:00
crypto_stream_manager_test.go use a synchronous API for the crypto setup (#3939) 2023-07-21 10:00:42 -07:00
crypto_stream_test.go use the new crypto/tls QUIC Transport (#3860) 2023-07-01 11:15:00 -07:00
datagram_queue.go add a context to Connection.ReceiveMessage (#3926) 2023-06-27 11:29:30 -07:00
datagram_queue_test.go add a context to Connection.ReceiveMessage (#3926) 2023-06-27 11:29:30 -07:00
errors.go return StreamErrors for all kinds of stream cancelations (#3681) 2023-01-26 12:58:06 -08:00
frame_sorter.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
frame_sorter_test.go stop using math/rand.Seed and Read in tests, bump go.mod version to 1.20 (#3936) 2023-07-01 11:29:41 -07:00
framer.go use ackhandler.Frame directly, not as a pointer, remove its sync.Pool (#3835) 2023-06-02 04:56:18 -07:00
framer_test.go use ackhandler.Frame directly, not as a pointer, remove its sync.Pool (#3835) 2023-06-02 04:56:18 -07:00
go.mod wip: InitialSpec (2/n) 2023-07-30 23:20:36 -06:00
go.sum wip: InitialSpec (2/n) 2023-07-30 23:20:36 -06:00
interface.go new: uquic 2023-08-02 15:38:16 -06:00
LICENSE add Google to license file 2016-12-14 11:54:01 +01:00
mock_ack_frame_source_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_batch_conn_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_conn_runner_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_crypto_data_handler_test.go use a synchronous API for the crypto setup (#3939) 2023-07-21 10:00:42 -07:00
mock_crypto_stream_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_frame_source_test.go use ackhandler.Frame directly, not as a pointer, remove its sync.Pool (#3835) 2023-06-02 04:56:18 -07:00
mock_mtu_discoverer_test.go initialize the MTU discoverer immediately 2023-06-02 18:35:02 +03:00
mock_packer_test.go ackhandler: unexport Packet 2023-06-05 21:06:58 +03:00
mock_packet_handler_manager_test.go add a GetConfigForClient callback to the Config 2023-05-02 15:56:49 +02:00
mock_packet_handler_test.go pass around receivedPacket as struct instead of as pointer (#3823) 2023-06-03 00:08:58 -07:00
mock_packetconn_test.go update gomock to v1.5.0 2021-02-20 09:33:43 +08:00
mock_quic_conn_test.go add a context to Connection.ReceiveMessage (#3926) 2023-06-27 11:29:30 -07:00
mock_receive_stream_internal_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_sealing_manager_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_send_conn_test.go pack packets into large buffers when GSO is available 2023-06-03 09:21:55 +03:00
mock_send_stream_internal_test.go don't use closures for passing OnLost and OnAcked STREAM frame callbacks (#3833) 2023-06-02 04:14:04 -07:00
mock_sender_test.go pack packets into large buffers when GSO is available 2023-06-03 09:21:55 +03:00
mock_stream_getter_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_stream_internal_test.go don't use closures for passing OnLost and OnAcked STREAM frame callbacks (#3833) 2023-06-02 04:14:04 -07:00
mock_stream_manager_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_stream_sender_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mock_token_store_test.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
mock_unknown_packet_handler_test.go pass around receivedPacket as struct instead of as pointer (#3823) 2023-06-03 00:08:58 -07:00
mock_unpacker_test.go simplify mockgen usage for private interfaces (#3769) 2023-04-19 07:57:00 -07:00
mockgen.go implement the Transport 2023-05-02 15:56:48 +02:00
mtu_discoverer.go ackhandler: use a frame handler interface for OnAcked / OnLost of all frame types (#3888) 2023-06-04 13:04:28 -07:00
mtu_discoverer_test.go ackhandler: use a frame handler interface for OnAcked / OnLost of all frame types (#3888) 2023-06-04 13:04:28 -07:00
multiplexer.go implement the Transport 2023-05-02 15:56:48 +02:00
multiplexer_test.go implement the Transport 2023-05-02 15:56:48 +02:00
oss-fuzz.sh oss-fuzz: manually install Go, fix paths (#3941) 2023-07-08 16:41:04 -07:00
packet_handler_map.go embed the packetInfo in the receivedPacket struct 2023-06-03 10:44:16 +03:00
packet_handler_map_test.go pass around receivedPacket as struct instead of as pointer (#3823) 2023-06-03 00:08:58 -07:00
packet_packer.go new: uquic 2023-08-02 15:38:16 -06:00
packet_packer_test.go stop using math/rand.Seed and Read in tests, bump go.mod version to 1.20 (#3936) 2023-07-01 11:29:41 -07:00
packet_unpacker.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
packet_unpacker_test.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
quic_suite_test.go implement the Transport 2023-05-02 15:56:48 +02:00
README.md docs: minor adjustment 2023-08-03 18:33:55 -06:00
receive_stream.go receive stream: put back the buffer for the last STREAM frame (#3832) 2023-06-02 03:22:51 -07:00
receive_stream_test.go remove unneeded tracking variables from streams, optimize memory layout (#3699) 2023-02-13 13:57:00 -08:00
retransmission_queue.go retransmission queue: simplify queueing of PING frames 2023-06-05 21:07:02 +03:00
retransmission_queue_test.go retransmission queue: simplify queueing of PING frames 2023-06-05 21:07:02 +03:00
SECURITY.md add a security policy (#3733) 2023-03-27 17:24:28 -07:00
send_conn.go embed the packetInfo in the receivedPacket struct 2023-06-03 10:44:16 +03:00
send_conn_test.go embed the packetInfo in the receivedPacket struct 2023-06-03 10:44:16 +03:00
send_queue.go check for WSAEMSGSIZE errors when receiving UDP packets on Windows (#3982) 2023-07-20 20:31:57 -07:00
send_queue_test.go pack packets into large buffers when GSO is available 2023-06-03 09:21:55 +03:00
send_stream.go surface stream error as stream context cancelation cause (#3970) 2023-07-19 10:12:01 -07:00
send_stream_test.go surface stream error as stream context cancelation cause (#3970) 2023-07-19 10:12:01 -07:00
server.go impl: uquic with utls 2023-07-29 23:45:16 -06:00
server_test.go impl: uquic with utls 2023-07-29 23:45:16 -06:00
stream.go don't use closures for passing OnLost and OnAcked STREAM frame callbacks (#3833) 2023-06-02 04:14:04 -07:00
stream_test.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
streams_map.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
streams_map_incoming.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
streams_map_incoming_test.go stop using math/rand.Seed and Read in tests, bump go.mod version to 1.20 (#3936) 2023-07-01 11:29:41 -07:00
streams_map_outgoing.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
streams_map_outgoing_test.go stop using math/rand.Seed and Read in tests, bump go.mod version to 1.20 (#3936) 2023-07-01 11:29:41 -07:00
streams_map_test.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
sys_conn.go remove OptimizeConn, add a Transport.WriteTo method instead (#3957) 2023-07-19 10:28:11 -07:00
sys_conn_buffers.go perform send / receive buffer increases when setting up the connection (#3949) 2023-07-12 10:54:20 -07:00
sys_conn_buffers_write.go perform send / receive buffer increases when setting up the connection (#3949) 2023-07-12 10:54:20 -07:00
sys_conn_df.go check for WSAEMSGSIZE errors when receiving UDP packets on Windows (#3982) 2023-07-20 20:31:57 -07:00
sys_conn_df_darwin.go check for WSAEMSGSIZE errors when receiving UDP packets on Windows (#3982) 2023-07-20 20:31:57 -07:00
sys_conn_df_linux.go check for WSAEMSGSIZE errors when receiving UDP packets on Windows (#3982) 2023-07-20 20:31:57 -07:00
sys_conn_df_windows.go check for WSAEMSGSIZE errors when receiving UDP packets on Windows (#3982) 2023-07-20 20:31:57 -07:00
sys_conn_helper_darwin.go check the length of IPv4 packet info control messages, add log message (#3920) 2023-07-01 12:03:00 -07:00
sys_conn_helper_freebsd.go check the length of IPv4 packet info control messages, add log message (#3920) 2023-07-01 12:03:00 -07:00
sys_conn_helper_linux.go check the length of IPv4 packet info control messages, add log message (#3920) 2023-07-01 12:03:00 -07:00
sys_conn_helper_linux_test.go add a function to set the UDP send buffer size 2023-05-08 14:35:21 +03:00
sys_conn_helper_nonlinux.go add a function to set the UDP send buffer size 2023-05-08 14:35:21 +03:00
sys_conn_no_gso.go pack packets into large buffers when GSO is available 2023-06-03 09:21:55 +03:00
sys_conn_no_oob.go use a netip.Addr instead of a net.IP in the packetInfo struct 2023-06-03 10:44:15 +03:00
sys_conn_oob.go remove OptimizeConn, add a Transport.WriteTo method instead (#3957) 2023-07-19 10:28:11 -07:00
sys_conn_oob_test.go embed the packetInfo in the receivedPacket struct 2023-06-03 10:44:16 +03:00
sys_conn_test.go introduce a buffer pool for large buffers (20k) 2023-06-02 18:35:02 +03:00
sys_conn_windows.go use a netip.Addr instead of a net.IP in the packetInfo struct 2023-06-03 10:44:15 +03:00
sys_conn_windows_test.go only run DPLPMTUD if the connection can send packets with the DF bit set (#3879) 2023-06-02 06:54:34 -07:00
token_store.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
token_store_test.go migrate to Ginkgo v2 2022-10-11 16:38:44 +04:00
tools.go migrate to Ginkgo v2 2022-10-11 16:38:44 +04:00
transport.go new: uquic 2023-08-02 15:38:16 -06:00
transport_test.go impl: uquic with utls 2023-07-29 23:45:16 -06:00
u_client.go new: uquic 2023-08-02 15:38:16 -06:00
u_conn_id_manager.go new: uquic 2023-08-02 15:38:16 -06:00
u_connection.go new: uquic 2023-08-02 15:38:16 -06:00
u_initial_packet_spec.go new: uquic 2023-08-02 15:38:16 -06:00
u_initial_packet_spec_test.go new: uquic 2023-08-02 15:38:16 -06:00
u_packet_packer.go new: uquic 2023-08-02 15:38:16 -06:00
u_quic_spec.go new: uquic 2023-08-02 15:38:16 -06:00
u_transport.go new: uquic 2023-08-02 15:38:16 -06:00
window_update_queue.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
window_update_queue_test.go rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00

uTLS drawing uQUIC

Build StatusBuild Status godoc

uQUIC is a fork of quic-go, which provides Initial Packet fingerprinting resistance and other features. While the handshake is still performed by quic-go, this library provides interface to customize the unencrypted Initial Packet which may reveal fingerprint-able information.

Golang 1.20+ is required.

If you have any questions, bug reports or contributions, you are welcome to publish those on GitHub. You may also reach out to one of the maintainers via gaukas.wang@colorado.edu.

Development is still in progress and we welcome any contributions adding new features or fixing extant bugs.

Features

Initial Packet fingerprinting resistance

uQUIC provides a mechanism to customize the Initial Packet, which is unencrypted and is almost unique to every QUIC client implementation. We provide an interface to customize the Initial Packet and makes the fingerprinting of QUIC clients harder.

Build a QUIC Spec

A QUIC Spec sets parameters and policies for uQUIC in establishing a QUIC connection.

func getQUICSpec() *uquic.QUICSpec {
	return &uquic.QUICSpec{
		InitialPacketSpec: uquic.InitialPacketSpec{
			SrcConnIDLength:        3,
			DestConnIDLength:       8,
			InitPacketNumberLength: 1,
			InitPacketNumber:       1,
			ClientTokenLength:      0,
			FrameOrder: uquic.QUICFrames{
				&uquic.QUICFrameCrypto{
					Offset: 0,
					Length: 0,
				},
			},
		},
		ClientHelloSpec: getClientHelloSpec(),
        UDPDatagramMinSize: 1357,
	}
}

func getClientHelloSpec() *utls.ClientHelloSpec {
	return &utls.ClientHelloSpec{
        // skipped a few mandatory fields, see uTLS for details
		Extensions: []utls.TLSExtension{
			// skipped a few mandatory extensions, see uTLS for details
			&utls.QUICTransportParametersExtension{
				TransportParameters: utls.TransportParameters{
					utls.InitialMaxStreamDataBidiRemote(0x100000),
					utls.InitialMaxStreamsBidi(16),
					utls.MaxDatagramFrameSize(1200),
					utls.MaxIdleTimeout(30000),
					utls.ActiveConnectionIDLimit(8),
					&utls.GREASEQUICBit{},
					&utls.VersionInformation{
						ChoosenVersion: utls.VERSION_1,
						AvailableVersions: []uint32{
							utls.VERSION_GREASE,
							utls.VERSION_1,
						},
						LegacyID: true,
					},
					utls.InitialMaxStreamsUni(16),
					&utls.GREASE{},
					utls.InitialMaxStreamDataBidiLocal(0xc00000),
					utls.InitialMaxStreamDataUni(0x100000),
					utls.InitialSourceConnectionID([]byte{}),
					utls.MaxAckDelay(20),
					utls.InitialMaxData(0x1800000),
					&utls.DisableActiveMigration{},
				},
			},
		},
	}
}