Fonte Original: https://thehackernews.com/2026/09/threat-actors-dont-want-better-attacks.html
Explore o universo da tecnologia e desbrave destinos incríveis através de relatos, guias práticos e fotografia. Dicas de TI e inspiração para suas próximas viagens. / Explore the world of technology and discover incredible destinations through stories, practical guides, and photography. IT tips and inspiration for your next trips.
terça-feira, 1 de setembro de 2026
Attack Engineering as a Generic Business Model
Bridging the Discovery Gap: Navigating the Evolution from MCP to Agentic Resource Discovery
Introduction
The rapid advancement of autonomous agent ecosystems has brought us to a critical architectural crossroads. As we transition from simple LLM-based chatbots to complex, multi-agent orchestration layers, we have encountered a significant bottleneck in how these entities interact with their environment. Historically, the industry relied on frameworks like the Model Context Protocol (MCP) to facilitate communication between AI applications and external toolsets. While MCP provided a vital foundation for standardized data exchange, it operated under a rigid architectural assumption: the client must already possess the precise endpoint or server address of the target resource. 🔍
This dependency creates a "Discovery Gap." In large-scale corporate ecosystems, where thousands of microservices and specialized tools exist in a state of constant flux, relying on pre-configured, static settings is no longer sustainable. As agentic workflows scale, the manual overhead of managing connection strings and endpoint configurations transforms from a minor administrative task into a monumental logistical challenge that threatens to stifle the agility of AI-driven automation. 📉
Technical Context: Architecture and Infrastructure
To understand the technical gravity of this shift, we must examine the underlying infrastructure requirements for modern agentic workflows. The current paradigm relies on established connections, where the orchestration layer acts as a static router. However, the emergence of the Agentic Resource Discovery (ARD) specification introduces a fundamental paradigm shift in how agents interact with distributed registries. 🏗️
Unlike its predecessors, ARD functions essentially as a name resolution system for autonomous agents. Rather than requiring a direct pointer to a specific service, ARD enables an agent to perform task-based queries against a dynamic discovery layer. This architecture is built upon sophisticated engineering principles, utilizing JSON-LD and REST interfaces to facilitate semantic searches across distributed registries. 🌐
From an infrastructure perspective, this represents a move away from static configuration files toward a highly dynamic, service-mesh-like environment for AI capabilities. The technical implementation allows for the existence of decentralized registries that can be queried by agents seeking specific functional capabilities rather than specific IP addresses or hostnames. This transforms the agent's role from a simple executor to an intelligent explorer capable of navigating a complex landscape of available computational resources and specialized APIs. 🤖
Practical Implications: Security and Governance
The transition from static connectivity to dynamic discovery introduces profound implications for security architecture and enterprise governance. For platform engineers, the primary challenge is no longer just about maintaining uptime, but about managing trust in a decentralized environment. 🛡️
One of the most significant advantages of an ARD-based approach is the ability for enterprises to maintain private, internal catalogs of proprietary tools while simultaneously querying approved external services through a unified interface. This allows for a controlled "hybrid" ecosystem where sensitive corporate data remains within a known perimeter, yet agents can still leverage the power of global SaaS offerings. 🔐
However, we must address a critical technical nuance: the DNS analogy is fundamentally incomplete. In traditional networking, a DNS query returns a specific IP address for a hostname. In an agentic discovery context, a resource query may return multiple candidate options or various versions of a tool that meet the semantic requirements of the task. This introduces a new layer of complexity regarding "trustworthiness." ⚖️
This necessitates a robust governance layer—a decision engine capable of evaluating the metadata and reputation of returned resources. For security professionals, this means that the discovery endpoint itself becomes a high-value target and a critical component of the security perimeter. The ability to validate the integrity of discovered services in real-time is paramount to preventing "hallucinated" or malicious resource injection into the agentic workflow. 🛡️
Strategic Conclusion: Toward an Interoperable Future
The path forward for AI orchestration lies in mitigating what we might call "connectivity chaos." The industry cannot afford a fragmented landscape where every new tool requires manual integration and complex configuration updates. The strategic solution is the adoption of open, standardized protocols that enable seamless interoperability across multi-cloud environments and diverse SaaS ecosystems without sacrificing granular control. 📊
The implementation of ARD-compatible services must be guided by the core principle: "describe once, discover anywhere." This approach ensures that as new capabilities are added to the enterprise ecosystem, they are immediately available for discovery by authorized agents, provided they adhere to the standardized semantic descriptions. 🚀
Ultimately, the success of this next generation of autonomous systems will depend on our ability to integrate robust security policies directly into the protocol's search and discovery endpoints. By treating resource discovery as a first-class citizen in the security architecture, organizations can move from a model of static uncertainty to one of dynamic, verifiable, and scalable intelligence. 🧠
Fonte Original: https://thenewstack.io/ard-agent-discovery-specification/
The Economics of Persistence in the Era of AI Agents
Introduction: The Paradigm Shift Toward Autonomous Lifecycle Management
The landscape of software engineering is currently undergoing a profound structural metamorphosis. We are moving away from a world where developers use tools to generate snippets of code, and entering an era defined by autonomous agents capable of managing the entire application lifecycle. Systems like Moonshot AI's Kimi represent this new frontier, where the boundary between "tool" and "operator" dissolves. These agents do not merely assist; they assume responsibility for everything from frontend orchestration to backend logic and database schema management.
This shift promises to democratize software creation by removing the traditional infrastructure burden from the end user. However, this convenience introduces a massive architectural paradox: we are entering an age where applications can be instantiated at a velocity that far outpaces human interaction. The challenge is no longer just about writing efficient code, but about managing the economic and operational footprint of millions of semi-autonomous, persistent digital entities. 🤖
Technical Context: Architectural Divergence and the Infrastructure Gap
From a systems engineering perspective, we are witnessing a critical divergence between resource provisioning and actual human utility. In traditional cloud computing models, infrastructure scaling is reactive to human-driven demand. We provision instances based on predictable traffic patterns or user-initiated requests. In an ecosystem driven by AI agents, the lifecycle of an application instance is decoupled from human presence.
The underlying architecture must now contend with a new type of workload: the waiting state. When agents create and maintain applications at scale, the system faces a massive influx of "idle" but "persistent" instances. This creates a significant architectural tension:
- Instance Proliferation: Agents can spin up entire environments in seconds, leading to an explosion of active processes that do not necessarily correspond to active users.
- Stateful Complexity: Unlike ephemeral serverless functions, these agent-managed applications require a durable state to ensure continuity across maintenance sessions and periods of inactivity.
- Resource Disparity: There is a growing gap between the high cost of compute (CPU/RAM) and the low cost of storage, creating a mismatch when trying to maintain millions of dormant application states.
The fundamental problem shifts from purely optimizing for performance or failover to solving for economic viability. If the architecture cannot efficiently manage these "waiting" applications, the sheer cost of maintaining persistent compute states could compromise the entire ecosystem's sustainability. 📊
Practical Implications: Navigating the Idle Resource Cost Trap
The practical reality for engineers and stakeholders is the emergence of the idle resource cost trap. As agents operate at a scale involving tens of millions of applications, persistence ceases to be a simple database feature and evolves into a global economic challenge. We can no longer treat every application instance as an active compute node.
To avoid financial insolvency in large-scale AI deployments, the architecture must implement a rigorous separation between ephemeral computation and durable state. The implications for data layer design are immense:
- Decoupled Execution: Compute layers must be designed to be highly volatile and easily terminated, while the application's "soul"—its critical logic and data—must reside in a separate, indestructible layer.
- State Rehydration: Systems must be capable of "rehydrating" an application from a dormant state only when an agent or user requires interaction, minimizing the duration of expensive active processing.
- Data Integrity vs. Cost: The risk of losing critical information during agent-led maintenance sessions is high if the persistence layer is not architected to handle asynchronous updates and long-term dormancy.
The engineering focus must shift from "how do we keep this server running?" to "how do we ensure this state survives without an active server?" ☁️
Strategic Conclusion: Reengineering the Modern Tech Stack
To navigate this new era, a strategic reengineering of our global data infrastructure is mandatory. We must move away from traditional monolithic architectures and toward a model where object storage serves as the new fundamental layer of the technology stack. The strategy for sustainable AI-distributed systems lies in the deliberate decoupling of persistent state from volatile computation.
The path forward requires leveraging shared, low-cost foundations to support the "permanent" elements of an application, while treating compute as a transient utility. By utilizing highly durable, low-cost storage as the source of truth, we can allow data to survive indefinitely without the need for expensive, active processing instances during periods of low demand or agent inactivity. 🛡️
Ultimately, the winners in the era of AI agents will not be those with the fastest compute, but those with the most economically efficient persistence architectures—systems that can support a massive, dormant digital population without breaking the bank.
Fonte Original: https://thenewstack.io/agent-scale-database-persistence/
The Anatomy of BGP Route Hijacking: Analyzing Prefix Manipulation and Traffic Redirection
Introduction
In the complex ecosystem of global internet routing, trust is often an implicit assumption rather than a verified constant. A recent high-profile security incident has laid bare the inherent vulnerabilities within the Border Gateway Protocol (BGP), specifically how its fundamental design can be weaponized to redirect critical traffic flows. By exploiting the way autonomous systems communicate network reachability, malicious actors successfully diverted packets intended for legitimate infrastructure—including Virtualizolog update endpoints and Softacals billing sites—toward attacker-controlled environments. 🌐
This was not merely a simple routing error; it was a sophisticated manipulation of global routing tables that compromised the integrity of the software supply chain. When an attacker successfully intercepts traffic, they don't just steal data in transit; they gain the ability to manipulate the very identity of the services users believe are secure. This analysis explores the technical mechanics, the architectural vulnerabilities, and the strategic imperatives for modern network defense. 🛡️
Technical Context: Architecture and Routing Logic
To understand the gravity of this attack, one must examine the underlying architecture of BGP route selection logic. BGP operates on the principle of advertising reachability via Network Layer Reachability Information (NLRI). The protocol is designed to find the most efficient path across the internet, but it lacks inherent cryptographic verification for the legitimacy of these advertisements. ⚙️
The core of this specific exploit lies in the concept of Longest Prefix Match (LPM). In BGP routing, when a router receives multiple entries for a destination, it will always prefer the most specific route—the one with the longest subnet mask. For example, if an attacker announces a more specific prefix (e.g., a /24) that is a subset of a legitimate aggregate route (e.g., a /16), the global routing table will prioritize the attacker's malicious path. This allows for precise traffic interception without disrupting the broader connectivity of the hijacked network. 🔍
Practical Implications: Supply Chain and Data Integrity
The real-world consequences of BGP hijacking extend far beyond simple connectivity issues; it transforms network-layer anomalies into software supply chain vulnerabilities. When an attacker controls the routing path for update endpoints, they control the code that reaches your servers. 🧠
The implications are categorized into three primary risk vectors:
- Data Exfiltration and Credential Theft: With a calculated high probability of interception at major RIPE collection points during attack waves, sensitive client credentials and billing information were at immediate risk of exposure.
- Malicious Payload Delivery: The ability to intercept update streams means an attacker can replace legitimate software packages with trojanized versions. This turns a routing error into a potential Remote Code Execution (RCE) vulnerability across the entire user base.
- Erosion of Trust: When legitimate-looking traffic is diverted, the boundary between "trusted" and "untrusted" infrastructure blurs, making it difficult for security teams to distinguish between a configuration error and a targeted attack.
Strategic Conclusion: Moving Toward Resilience
Mitigating the risks of BGP hijacking requires a shift from reactive troubleshooting to a proactive Zero Trust posture. It is no longer sufficient to assume that if a packet reaches its destination, it has traveled via a legitimate path. Organizations must treat the network layer as an untrusted medium that requires continuous verification. 🔧
For system administrators and network engineers, the following strategic actions are mandatory:
- Immediate Incident Response: During any period of suspected routing instability, perform an immediate rotation of all credentials and secrets that were active during the exposure window.
- Enhanced Observability: Implement robust route integrity monitoring mechanisms. Organizations must maintain high-fidelity observability of their IP prefixes to detect BGP propagation anomalies or unauthorized advertisements in real-time.
- Audit and Integrity Checks: Conduct deep audits of all packages installed on servers during the period of interception. The integrity of the software supply chain depends on verifying that what was delivered is exactly what was intended.
- Strengthened Routing Security: Move toward implementing more robust routing security protocols, such as RPKI (Resource Public Key Infrastructure), to provide a cryptographic layer of verification for BGP advertisements.
Fonte Original: https://www.theregister.com/security/2026/09/01/33-hour-bgp-hijack-of-softaculous-traffic-prompts-security-scramble/5293608
Network Interoperability via Open APIs Redefines the Multicloud Paradigm
Fonte Original: https://www.theregister.com/off-prem/2026/09/01/microsoft-and-aws-build-the-multicloud-bridge-they-said-customers-barely-needed/5293614
A Nova Era da Interoperabilidade de Rede: Redefinindo o Paradigma Multicloud via APIs Abertas
Introdução ao Fim do Isolamento de Nuvem 🌐
O cenário tecnológico global está testemunhando uma transformação sísmica na forma como as infraestruturas de computação em nuvem interagem entre si. Historicamente, a estratégia multicloud era frequentemente limitada por silos de conectividade, onde mover workloads entre diferentes provedores era um processo lento, caro e tecnicamente arriscado. No entanto, a recente colaboração estratégica entre gigantes como Microsoft e AWS para viabilizar conexões privadas de alta velocidade está alterando fundamentalmente essa dinâmica.
O foco central desta inovação reside na integração profunda entre o Azure Multi-Cloud Interconnect e o AWS Interconnect. O que antes era visto como um obstáculo técnico quase intransponível agora se torna uma vantagem competitiva. Ao permitir que workloads críticos transitem entre plataformas rivais através de links dedicados com capacidades de até 100 Gbps, estamos presenciando a dissolução das fronteiras tradicionais entre os hyperscalers. Esta mudança sinaliza o fim da era do isolamento e o início de uma era de fluidez de dados sem precedentes.
Arquitetura de Rede e Abstração via APIs Abertas 🏗️
Do ponto de vista de engenharia de infraestrutura, a complexidade técnica por trás dessa conectividade é imensa. O grande diferencial desta solução não reside apenas na largura de banda bruta, mas na utilização inteligente de especificações de API abertas para abstrair as camadas de roteamento e provisionamento de rede tradicional. Em arquiteturas legadas, o estabelecimento de conexões inter-cloud exigia meses de configuração manual, gestão complexa de circuitos físicos e uma orquestração de BGP (Border Gateway Protocol) extremamente sensível a erros.
A implementação atual utiliza protocolos de interoperabilidade avançados que permitem que o tráfego flua por rotas previsíveis e determinísticas. Isso elimina a necessidade de intervenções manuais exaustivas no ciclo de vida da rede. Um ponto crítico para a segurança cibernética é a camada de proteção de dados: a utilização de MACsec (Media Access Control Security) nativo garante que a integridade e a confidencialidade dos dados sejam mantidas durante todo o transporte entre os ambientes de nuvem. Isso significa que, embora os dados estejam transitando por infraestruturas compartilhadas, a criptração na camada 2 oferece uma proteção robusta contra interceptações, garantindo que a segurança seja intrínseca ao link e não apenas um adendo configurável.
Implicações Práticas para Arquitetura de Soluções 🛡️
Para arquitetos de soluções e engenheiros de DevOps, as implicações práticas são profundas e transformadoras. A redução drástica da fricção operacional altera o posicionamento do multicloud: de uma estratégia complexa e difícil de gerenciar para um modelo altamente escalável e ágil. A capacidade de estabelecer links de alta largura de banda com níveis de disponibilidade de quatro noves (99.99%) mitiga os riscos operacionais associados à latência e instabilidade em aplicações mission-critical.
As vantagens práticas incluem:
- Redução do Time-to-Market: O tempo de provisionamento de conectividade é reduzido de semanas para minutos, permitindo respostas rápidas às demandas voláteis do mercado.
- Mitigação de Riscos de Latência: A utilização de links dedicados minimiza o jitter e a latência, essosciais para aplicações distribuídas que dependem de sincronização em tempo real.
- Eliminação de Infraestrutura "Clunky": O fim da dependência de configurações manuais pesadas permite que as equipes foquem em inovação, e não apenas na manutenção de túneis VPN ou circuitos MPLS obsoletos.
- Resiliência Operacional: A possibilidade de failover entre nuvens com performance consistente garante a continuidade do negócio mesmo em cenientes de falha regional de um provedor específico.
Conclusão Estratégica e o Futuro da Computação Agnóstica 🔐
Estrategicamente, este movimento deve ser interpretado como uma convergência inevitável para um ecossistema de nuvens híbridas e totalmente interoperáveis. A barreira entre os provedores está diminuindo em favor da eficiência do cliente final. O foco das grandes corporações deve migrar da preocupação com a conectividade básica para a gestão inteligente de dados distribuídos entre múltiplos hyperscalers. Estamos entrando em um período onde a infraestrutura se torna invisível e o valor reside na orquestração.
A adoção de padrões abertos sugere que o futuro da computação em escala reside na capacidade de operar de forma agnóstica ao provedor. A habilidade de utilizar APIs padronizadas para garantir segurança, performance e conformidade será o principal diferencial competitivo. O sucesso das organizações dependerá da sua capacidade de adotar essas novas arquiteturas de rede, tratando a nuvem não como um destino estático, mas como um recurso fluido, seguro e altamente orquestrado ✅.
Fonte Original: https://www.theregister.com/off-prem/2026/09/01/microsoft-and-aws-build-the-multicloud-bridge-they-said-customers-barely-needed/5293614
-
▼
2026
(170)
-
▼
setembro
(6)
- A Nova Era da Interoperabilidade de Rede: Redefini...
- Network Interoperability via Open APIs Redefines t...
- The Anatomy of BGP Route Hijacking: Analyzing Pref...
- The Economics of Persistence in the Era of AI Agents
- Bridging the Discovery Gap: Navigating the Evoluti...
- Attack Engineering as a Generic Business Model
-
▼
setembro
(6)