Cybersecurity glossary

What is QUIC?

Learn what QUIC is, how it replaces TCP+TLS for multiplexed encrypted streams, why HTTP/3 depends on it, and which operational and security issues teams should plan for.

Web platform securityUpdated July 22, 2026
Also known asIETF QUICQuick UDP Internet Connections

Definition

QUIC is a modern transport protocol built on UDP that provides multiplexed, reliable streams with integrated TLS 1.3 encryption, connection migration, and reduced handshake latency—serving as the foundation for HTTP/3.

Why QUIC matters

TCP served the internet for decades, but modern apps hate head-of-line blocking and slow handshakes—especially on mobile networks. Encrypting only application bytes also left transport metadata visible to middleboxes.

QUIC rethinks the transport: multiplexed streams over UDP, TLS 1.3 integrated into the handshake, and connection IDs that survive path changes. HTTP/3 is the flagship application of that design.

QUIC vs TCP+TLS

TopicTCP + TLSQUIC
Packet substrateTCPUDP
Stream multiplexingOne byte stream per connection (HTTP/2 multiplexes above TCP)Independent streams in the transport
HandshakeTCP then TLS (multiple RTTs historically)Combined transport + crypto handshake
Loss impactLoss can stall the whole TCP connectionLoss affects streams more independently
Visibility to middleboxesMany headers visible; long ossification historyMostly encrypted; harder to inspect/modify

How a QUIC connection forms

1

Client sends an Initial UDP packet

It targets a known UDP port (often 443) and begins the cryptographic handshake.

2

TLS 1.3 credentials are negotiated

Certificates and keys are established as part of QUIC, not bolted on afterward.

3

Connection IDs identify the session

Peers can keep communicating even if the client IP/port changes.

4

Application opens streams

HTTP/3 or another protocol maps requests onto QUIC streams.

5

Loss recovery and congestion control run

QUIC implements these in user space rather than relying on kernel TCP.

6

Session ends or migrates

Idle timeouts, graceful close, or path migration complete the lifecycle.

Benefits operators care about

Lower connection latency

Fewer round trips to start secure transfers—especially with session resumption.

Better behavior under loss

One lost packet is less likely to freeze every multiplexed request.

Mobile path changes

Connection migration can preserve sessions across network handoffs.

Reduced ossification

Encrypting transport details limits middleboxes from freezing protocol evolution.

Security and operations caveats

UDP policy readiness

Enterprise firewalls may block QUIC; plan for fallback and measurement.

New implementation CVEs

User-space stacks expand the patch surface—track vendor advisories.

Harder passive inspection

Traditional TCP DPI sees less; invest in endpoint and TLS-terminating edge telemetry.

Amplification defenses

Address validation and rate limits remain important for UDP-based protocols.

Adoption checklist

  • Enable QUIC/HTTP/3 at edges that can serve UDP/443 reliably.
  • Confirm monitoring distinguishes QUIC success from silent TCP fallback.
  • Keep TCP HTTP healthy—many networks will not allow QUIC.
  • Patch QUIC libraries and CDN features promptly after CVEs.
  • Educate security teams that packet captures will look different from TCP HTTP.
  • Load-test on lossy and mobile-like networks, not only clean links.
  • Review DDoS posture for UDP/443 alongside existing TCP protections.
  • Document rollback if a QUIC implementation issue affects production.

The practical takeaway

QUIC is an encrypted, stream-multiplexed transport on UDP that powers HTTP/3 and improves handshake speed and loss resilience versus TCP-centric stacks. It is not a magical security control by itself—but it mandates modern crypto and changes how networks observe traffic.

Adopt QUIC where edges and firewalls allow it, measure real fallback rates, and keep operational playbooks ready for a transport that lives outside classic TCP assumptions.

Related security terms

Frequently asked questions

What is QUIC in simple terms?

It is a newer way to move data reliably across the internet using UDP instead of TCP, with encryption built in and multiple streams that do not block each other when a packet is lost.

Is QUIC only for HTTP/3?

HTTP/3 is the main mainstream user, but QUIC is a general transport and can carry other application protocols over time.

Why not just improve TCP?

TCP is deeply embedded in operating systems and middleboxes. Building on UDP lets QUIC evolve user-space implementations faster while encrypting more of the transport metadata.

Does QUIC always use encryption?

IETF QUIC is designed to encrypt transport headers and payloads with TLS 1.3-based crypto. There is no common cleartext mode like plain HTTP.

What is connection migration?

QUIC connections are identified by connection IDs, so a device can often keep a session when its IP changes—such as moving from Wi-Fi to cellular.

Will my firewall break QUIC?

If UDP/443 is blocked or heavily interfered with, QUIC fails and clients typically fall back to TCP-based HTTP.

Is QUIC the same as the old “Google QUIC”?

Google’s early gQUIC inspired the work; today’s standard is IETF QUIC, which differs in details and is what HTTP/3 uses.

References

Explore authoritative guidance and frameworks related to quic.

Explore every security definition

Return to the glossary to search by term, alias, starting letter, or security category.

Browse glossary