Home / Companies / FusionAuth / Blog / June 2026

June 2026 Summaries

4 posts from FusionAuth

Filter
Month: Year:
Post Summaries Back to Blog
FusionAuth 1.68.0, named "Intelligent Kamfa" after a clever fish species, introduces significant enhancements to its multi-factor authentication (MFA) process, emphasizing a new intelligent system that automatically triggers MFA challenges in high-risk situations without requiring users to script custom logic. The update includes new MFA lifecycle webhooks, a baseUrl variable for email and message templates, hashed recovery codes to enhance security, and the ability for users to customize names for TOTP authenticators. To accommodate these changes, FusionAuth offers updated versions of its SDKs for Swift, Kotlin, React, Angular, and Vue, each compatible with the latest respective platform versions. The release also addresses numerous bug fixes, promising an optimized and secure authentication experience.
Jun 30, 2026 788 words in the original blog post.
The Model Context Protocol (MCP) is emerging as a key API for large language models (LLMs) to interface with business logic, but its rapid adoption has led to security oversights reminiscent of the early REST era. Security vulnerabilities such as path traversal and injection issues have already been identified, emphasizing the need for robust authentication and authorization practices. MCP does not enforce security at the protocol level, placing the responsibility on implementers to secure their systems, often using OAuth to delegate authentication to an Authorization Server (AS). This approach ensures verified identities and user-controlled access, minimizing potential damage from misconfigurations. The process involves MCP server discovery, client registration, user authentication, consent granting, access token issuance, and validation. While the specification provides guidance for securing the client-server interaction, securing downstream services remains critical. MCP's reliance on OAuth, a well-established standard, aids in addressing these security concerns, but implementers must be proactive in applying these measures to prevent breaches.
Jun 15, 2026 1,539 words in the original blog post.
A recent survey by FusionAuth reveals that a significant number of organizations, especially those confident in their AI security, have experienced AI identity breaches, with 84% of the most confident organizations confirming incidents in the past year. This counterintuitive finding suggests that higher confidence often correlates with increased exposure due to rapid deployment and governance practices that fail to keep pace with expanding attack surfaces. The research highlights the critical role of identity architecture in managing AI-related security risks, noting that organizations using multi-tenant SaaS identity platforms face higher breach rates than those with self-hosted solutions. The survey underscores the importance of architectural decisions in addressing the complex security needs of non-human identities, such as AI agents, which now vastly outnumber human identities in enterprises. As organizations face increasing pressure from customers and regulators to demonstrate data isolation and security, there is a growing market-driven shift towards investing in scalable identity infrastructure that can accommodate AI's unique demands. This transformation is not just about policy and governance but about making strategic architectural choices that ensure effective access control and threat mitigation in the evolving AI landscape.
Jun 09, 2026 2,661 words in the original blog post.
The Browser-Based OAuth Client (BBOC) pattern is considered the least secure OAuth architecture due to its practice of storing tokens in browser storage, exposing them to JavaScript vulnerabilities such as Cross-Site Scripting (XSS) and supply chain attacks. Despite its convenience and prevalence in OAuth provider resources, the Internet Engineering Task Force (IETF) advises against using BBOC for applications handling sensitive or personal data. High-profile security breaches have highlighted the risks associated with BBOC, urging organizations to transition to more secure architectures like Backend-for-Frontend (BFF) or Token-Mediating Backend (TMB). These alternatives enhance security by storing tokens server-side and limiting token exposure to the browser. The IETF's draft for OAuth 2.0 in browser applications recommends best practices such as using the Authorization Code Flow with PKCE and avoiding deprecated methods like the implicit grant. While migration from BBOC to secure architectures can be complex, implementing robust security controls, like short-lived tokens and strong Content Security Policies, can mitigate risks for those unable to transition immediately. However, the ultimate recommendation is to move away from BBOC to ensure compliance with security regulations and to protect against evolving threats.
Jun 03, 2026 3,309 words in the original blog post.