Threat Research

What is a DDoS Attack 2026 - Types, Floods and Examples

A DDoS attack floods a server or network with traffic from many sources at once. How DDoS attacks work, the main flood types, and what a booter or IP stresser actually sends.

13 min readVerified security research

A Distributed Denial of Service attack is an attempt to make an online service unavailable by overwhelming it with traffic from many sources at once. The keyword is distributed: instead of one machine sending requests, the attacker controls thousands of compromised devices that all target the same victim simultaneously.

Those compromised devices form a botnet. Home routers, security cameras, and infected computers around the world receive a command and begin sending traffic. Because the flood arrives from thousands of legitimate-looking IP addresses, the victim cannot stop it by blocking a single source.

The motivation varies. Extortion, competition between game communities, hacktivism, and simple vandalism all drive the DDoS-for-hire market, where booter services rent botnet capacity for a few dollars per attack.


The Three Families of DDoS Attacks

Every DDoS attack targets one of three resources: bandwidth, connection state, or application processing. Defenses differ for each family.

Family Examples Target resource Typical measurement
Volumetric UDP flood, DNS and NTP amplification Network bandwidth Gigabits per second
Protocol SYN flood, ACK flood, fragmented packet attacks Connection state tables Packets per second
Application layer HTTP flood, Slowloris, HTTP/2 Rapid Reset Web server workers and CPU Requests per second

Amplification attacks deserve special attention. The attacker sends small queries to open DNS or NTP servers with the victim’s spoofed IP address. The servers answer with responses up to fifty times larger, all directed at the victim. A modest botnet can generate terabits of traffic this way.


Incidents That Shaped the Industry

The record for the largest attack keeps falling. Each milestone forced the defense industry to rebuild its assumptions.

Record volumetric DDoS attacks disclosedGitHub 20181.35 TbpsAWS 20202.3 TbpsGoogle 20172.54 TbpsAzure 20213.47 Tbps
Peak size, in terabits per second, of the largest publicly disclosed volumetric attacks. Application-layer records are measured in requests per second and are not directly comparable.
  • Krebs on Security, 2016The Mirai botnet hit the security blog with roughly 620 Gbps, then attacked the DNS provider Dyn weeks later, knocking major sites offline across the US east coast.
  • GitHub, 2018A memcached amplification attack peaked at 1.35 Tbps. GitHub mitigated it in minutes by shifting traffic to a scrubbing service.
  • AWS, 2020Amazon reported absorbing a 2.3 Tbps CLDAP reflection attack against a customer, at the time the largest ever disclosed.
  • Google, 2017, disclosed 2020Google revealed it had absorbed a 2.54 Tbps attack three years earlier, showing how long the largest events can stay private.
  • Microsoft Azure, 2021Azure reported mitigating a 3.47 Tbps attack against an Asian customer, the largest volumetric event it had published.
  • Cloudflare, 2023The HTTP/2 Rapid Reset campaign peaked at 398 million requests per second, proving application-layer attacks can rival volumetric records in impact.

Defense in Depth

No single product stops every attack family. Resilient organizations layer several defenses and test them regularly.

  1. Anycast distribution spreads traffic across a global network so no single location absorbs the full flood.
  2. Upstream scrubbing centers filter attack traffic before it reaches your connection.
  3. Rate limiting and connection caps protect state tables from protocol attacks.
  4. A web application firewall filters malicious HTTP patterns at the application layer.
  5. An incident runbook defines who acts, what gets rerouted, and how communication flows during an attack.

The last layer is validation. Authorized stress testing with an IP stresser confirms that each defense engages at the threshold you expect, before a real attacker tests it for you.


Frequently Asked Questions

What does DDoS stand for?

DDoS stands for Distributed Denial of Service. It describes an attack where many compromised devices send traffic to a single target at the same time, exhausting its bandwidth, connection tables, or application resources.

Are DDoS attacks illegal?

Yes. Launching or paying for a DDoS attack is a crime under the US Computer Fraud and Abuse Act, the UK Computer Misuse Act, and equivalent laws across the EU, Canada, and Australia. Penalties include prison sentences, and booter service customers have been prosecuted alongside operators.

What is the difference between DoS and DDoS?

A DoS attack comes from a single source, which makes it easier to block with one firewall rule. A DDoS attack comes from thousands of distributed devices, so blocking any single source does not stop the flood.

How long does a typical DDoS attack last?

Most attacks are short. Industry telemetry consistently shows the majority of events end within minutes, often because attackers abandon targets that do not go down quickly. Multi-day campaigns exist but are the exception.

Can a small website be a DDoS target?

Yes. Small sites are attacked through automated botnets that scan for any exposed service, through extortion campaigns, and through disputes in online communities. Size reduces the odds but never removes them.