ClaudeCloudflare2026/06/03 17:00

Enforcing the First AS in BGP AS_PATHs

要点だけを先に読めるように短く再構成したセクションです。

元記事

Quick Digest

要約

要点だけを先に読めるように短く再構成したセクションです。

claudeja

Enforcing the First AS in BGP AS_PATHs の要約

Key Points

  • ポイント1: Enforcing the First AS in BGP AS_PATHs 2026-06-03 Bryton Herdes Bryce Walters Mingwei Zhang 10 min read Some recent route hijacks reported by Spamhaus captured our attention.
  • ポイント2: In many of these hijack attempts, an apparent bad actor took advantage of unused autonomous system numbers , or ASNs.
  • ポイント3: Notably in these hijacks, the actor appears to be creating fake AS_PATHs toward destinations, misdirecting traffic down an unexpected path.

Summary

この記事は 2026-06-03 に公開された「Enforcing the First AS in BGP AS_PATHs」の内容を日本語で簡潔にまとめたものです。

Key Points

  • ポイント1: Enforcing the First AS in BGP AS_PATHs 2026-06-03 Bryton Herdes Bryce Walters Mingwei Zhang 10 min read Some recent route hijacks reported by Spamhaus captured our attention.
  • ポイント2: In many of these hijack attempts, an apparent bad actor took advantage of unused autonomous system numbers , or ASNs.
  • ポイント3: Notably in these hijacks, the actor appears to be creating fake AS_PATHs toward destinations, misdirecting traffic down an unexpected path.

Full Translation

翻訳

原文の流れを保ったまま読める翻訳セクションです。

claudeja

Enforcing the First AS in BGP AS_PATHs(原文タイトル)

概要

公開日: 2026-06-03 翻訳生成に失敗したため、原文をそのまま保存しています。

原文

Enforcing the First AS in BGP AS_PATHs 2026-06-03 Bryton Herdes Bryce Walters Mingwei Zhang 10 min read Some recent route hijacks reported by Spamhaus captured our attention. In many of these hijack attempts, an apparent bad actor took advantage of unused autonomous system numbers , or ASNs. Notably in these hijacks, the actor appears to be creating fake AS_PATHs toward destinations, misdirecting traffic down an unexpected path. By creating forged AS_PATHs, the hijacker is attempting to lead traffic somewhere it isn’t normally meant to go while also trying to conceal their identity. A hijacker could strip enough information away from a network path that they could pretend to be the origin of a Border Gateway Protocol (BGP) prefix themselves. Attackers can use this hijacked route to intercept traffic and for other nefarious purposes. There is a simple solution for these cases: basic verification that a BGP peer autonomous system (AS) always includes their network as the “First AS” in an advertised route. To get a sense of how well these safeguards are implemented, we stress-tested several major networks and researched their BGP implementations. Read on to see what we learned. Examining route hijacks involving forged paths The idea that an actor is creating fake AS_PATHs is supported when we take a closer look at implausible AS relationships in the path. For example, let’s examine one of the hijacks reported by Spamhaus, involving a prefix belonging to Orange S.A., the French telecom company. Using the monocle tool, we can easily find a BGP UPDATE message related to the hijack: ➜ ~ monocle search --start-ts 2026-04-13T00:20:00Z --end-ts 2026-04-13T00:23:59Z --prefix 90.98.0.0/15 --collector rrc26 --json { "aggr_asn": null, "aggr_ip": null, "as_path": "48237 1299 199524 270118 17072 41128", "atomic": false, "collector": "rrc26", "communities": null, "local_pref": 0, "med": 0, "next_hop": "185.1.8.3", "origin": "IGP", "peer_asn": 48237, "peer_ip": "185.1.8.3", "prefix": "90.98.0.0/15", "timestamp": 1776039612.0, "type": "ANNOUNCE" } We know AS1299 ( Arelion ) is a Tier 1 network , meaning every AS on the right-hand side in the path is describing an upstream (customer-to-provider) relationship. This implies that AS17072 is a transit provider for AS41128, AS270118 for AS17072, and AS199524 for AS270118. If we take a closer look at these networks: AS41128 is an unused ASN belonging to Orange France AS17072 is an ISP primarily based in Mexico AS270118 is a hosting provider based in Mexico AS199524 is Gcore , a provider with a global peering presence The order of the ASes in the message above would suggest that an unused Orange France AS is buying transit from Mexican ISPs, which is then upstreamed to Gcore and Tier 1 providers – which would be quite odd. In another instance, a reported hijack for prefixes 47.1.0.0/16 and 47.2.0.0/16 from origin AS36429 even included Cloudflare’s main ASN, 13335, in the AS_PATH, “199524 270118 17072 13335 36429”. We can view examples of these BGP UPDATEs in the MRT Explorer from Cloudflare Radar: We can authoritatively confirm that we (Cloudflare, AS13335) have no adjacency with the now-unused AS36429 owned by Charter. This means this was a forged path by the hijacker that included Cloudflare’s ASN as one of the fake upstream networks in advertisements propagated toward Gcore (AS199524). Further, Spamhaus correctly pointed out that all the hijack routes led to a network behind Gcore peering in Chicago, never actually traversing the Mexican ISPs or Cloudflare’s network in the forwarding path. Because of this, we can reasonably conclude these paths are forged up until the leftmost common AS, which in this case is AS199524, as the rest of the path seems implausible. We believe what is happ