Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

The Agent Space Is About to Have Its TCP/IP Moment. Here Is What That Means for Builders.

In the early 1980s, every computer network was its own island. ARPANET had its own protocols. BITNET had its own. Xerox had its own. If you wanted machines on different networks to talk to each other, you either built a custom bridge or…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

In the early 1980s, every computer network was its own island. ARPANET had its own protocols. BITNET had its own. Xerox had its own. If you wanted machines on different networks to talk to each other, you either built a custom bridge or you accepted that they could not. Every application had to solve the networking problem itself.



TCP/IP did not change what computers could do. It changed what developers had to think about. Once the transport layer was standardised, nobody building an application had to solve packet routing, fragmentation, or delivery guarantees anymore. That layer was handled. You wrote your application, and the network figured out the rest.



We are at the equivalent point for AI agents right now. And most people building in this space have not noticed yet.






What does the agent space look like before its TCP/IP moment?



Look at what developers building multi-agent systems are actually doing today. Every team is solving the same set of problems from scratch: how do agents find each other, how do they prove who they are, how do messages get through when agents are behind different NATs on different cloud providers, what happens to the connection when an agent restarts?



These are not application problems. They are transport problems. And right now they are being solved at the application layer, which means every team solves them differently, incompatibly, and with the full blast radius landing on their own codebase.



The A2A protocol, which Google donated to the Linux Foundation in June 2025 and now has over 150 supporting organisations, is a serious attempt at agent interoperability. It defines how agents delegate tasks, track status, and return structured results. It is genuinely useful. It also explicitly assumes that two agents can already reach each other. The transport problem is out of scope by design.



MCP is the same. It defines how an agent connects to tools and data sources. It does not define how agents connect to each other across arbitrary network conditions.



Both protocols are solving real problems at the application layer. Neither touches the layer underneath.






What did TCP/IP actually solve, and what is the agent equivalent?



TCP/IP solved three things: addressing (every machine gets a unique address), routing (packets find their way from source to destination without the application knowing how), and reliability (dropped packets get retransmitted automatically).



The agent transport layer needs to solve three analogous problems.



Persistent addressing. IP addresses change. Agents restart, migrate between cloud providers, run on spot instances that get reclaimed. An agent's address needs to come from something stable — specifically a cryptographic keypair that lives on disk. The address is derived from the key, not the host. It survives every infrastructure change without any external coordination.



NAT traversal. Most agents do not have public IP addresses. They run inside VPCs, behind corporate firewalls, on developer laptops. Network address translation, designed to conserve public IPs, makes direct peer-to-peer connections between such machines hard. The standard solution is STUN combined with hole-punching: both agents connect to a lightweight coordination server that tells each side what the other looks like from the outside, then both send packets simultaneously. The NATs open temporary mappings and a direct channel forms. This is how WebRTC handles browser-to-browser video. The same technique works for agents.



Mutual authentication. TCP/IP has no concept of identity. That omission gave us decades of spoofing and impersonation attacks. An agent transport layer can do better from the start. Each agent holds a keypair. Trust between two agents is established through a signed handshake that both sides must approve. Traffic is encrypted in transit. Revoking one relationship does not affect any other.






Why this matters for what you are building right now.



If you are building a multi-agent system today, you are probably solving at least one of these three problems yourself. Service discovery in Redis or DynamoDB. A relay server in the middle to handle NAT. API keys passed around that grant access to more than you intended.



These solutions work. They also mean your system has moving parts that are not your product, failure modes that are not your bugs, and security properties that depend on getting a lot of operational details right continuously.



The TCP/IP moment for agents means those problems move to a dedicated layer that handles them once. Your application code talks to the layer, the layer talks to the network, and you get back to building the parts that are actually specific to your use case.






What should builders watch for?



The protocol that handles this layer needs to be open, inspectable, and not controlled by a single vendor. The same way TCP/IP being an open standard was what made the internet possible rather than a collection of proprietary intranets.



Pilot Protocol is the implementation we have been building and running in production. The daemon handles keypair-derived addressing, NAT traversal via STUN and hole-punching, and encrypted peer connections with X25519 key exchange and AES-256-GCM. Whatever application protocol you run on top — including A2A-formatted messages — runs over that foundation. The source is on GitHub.



The TCP/IP moment for agents is not coming. It is already in progress. The question is just how long teams keep solving transport problems at the application layer before they stop having to.



IoC Intelligence (1 Indikatoren)
ed25519[.]cr[.]yp[.]to
CTI Threat Relationship Graph5 Knoten / 4 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
IR-PLAYBOOK-RCE
HIGH
SOC Incident Playbook: Remote Code Execution (RCE) Defense
1-Click Detection Engineering: Sigma & YARA Rules
SOC Ready
title: Detect Exploitation - The Agent Space Is About to Have Its TCP/IP Moment. Here Is What That Means for Builders.
id: e19bac90-2d55-4b41-9dfb-9b85044e653e
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-23
logsource:
  category: network_connection
  product: any
detection:
  selection:
      DestinationHostname:
        - 'ed25519.cr.yp.to'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-23"
        description = "YARA Signature for "
    strings:
        $str = "The Agent Space Is About to Ha" ascii wide
    condition:
        any of them
}
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten The Agent Space Is About to Have Its TCP/IP Moment. Here Is What That Means for Builders.

Thematisch verwandte Begriffe: Agent, Space, About, Have · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-90904 | Joomla Extension - joomshaper.com - Broken Access Control (ACL Bypass) i…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick