PingOne DaVinci Flow Designer: Visual Identity Orchestration Tutorial

PingOne DaVinci Flow Designer: Visual Identity Orchestration Tutorial

PingOne DaVinci Flow Designer is a visual tool for designing and managing identity orchestration workflows. It allows you to create complex authentication and authorization processes without writing extensive code, making it accessible even to those with limited programming experience. In this tutorial, we’ll walk through creating a basic identity orchestration flow, configuring actions, and testing the flow to ensure it works as expected. What is PingOne DaVinci Flow Designer? PingOne DaVinci Flow Designer is a visual tool for designing and managing identity orchestration workflows. It provides a drag-and-drop interface to build authentication and authorization processes, making it easier to manage complex identity flows. ...

May 29, 2026 · 5 min · 1021 words · IAMDevBox
How Did a Stolen OAuth Token Bypass MFA in the $2M Supply Chain Attack?

How Did a Stolen OAuth Token Bypass MFA in the $2M Supply Chain Attack?

Why This Matters Now: The recent $2M supply chain attack on a major tech company highlighted a critical vulnerability in OAuth token management. Attackers managed to steal an OAuth token and bypass Multi-Factor Authentication (MFA), leading to unauthorized access to sensitive systems. If your organization relies on OAuth for authentication, understanding how this breach occurred is crucial to preventing similar incidents. 🚨 Breaking: Over $2M stolen in a supply chain attack due to compromised OAuth tokens. Review your OAuth configurations immediately. $2M+Stolen 100+Systems Compromised Timeline of the Incident December 2023 Initial breach of a third-party supplier's system. ...

May 29, 2026 · 5 min · 1023 words · IAMDevBox
Threat Actors Exploit Critical FortiClient EMS Flaw to Deploy Credential Stealer

Threat Actors Exploit Critical FortiClient EMS Flaw to Deploy Credential Stealer

Why This Matters Now Threat actors are exploiting a critical flaw in FortiClient EMS (Endpoint Management System) to deploy credential stealers. This vulnerability, discovered recently, poses a significant risk to organizations relying on FortiClient for endpoint security. As of December 2023, several organizations have reported successful attacks leveraging this flaw, leading to the theft of sensitive credentials. 🚨 Security Alert: Organizations using FortiClient EMS are at risk of credential theft. Immediate action is required to apply the latest security patches. 100+Affected Organizations 24hrsTime to Patch Understanding the Vulnerability The vulnerability lies in the way FortiClient EMS handles certain requests. Attackers can exploit this weakness to deploy malicious software, specifically credential stealers, on endpoints managed by FortiClient EMS. This allows them to capture user credentials, which can then be used to gain unauthorized access to the network and sensitive systems. ...

May 28, 2026 · 4 min · 743 words · IAMDevBox
Passkeys Adoption Guide: Implementing FIDO2 WebAuthn in Production

Passkeys Adoption Guide: Implementing FIDO2 WebAuthn in Production

Passkeys replace passwords with FIDO2 WebAuthn credentials — cryptographic key pairs where the private key never leaves the device. Users authenticate with biometrics (Touch ID, Face ID, Windows Hello) or hardware keys (YubiKey, Titan key) instead of passwords. This guide covers production implementation with @simplewebauthn/server, Keycloak WebAuthn flow setup, and error debugging. For protocol context, see our FIDO vs FIDO2 explainer. What is FIDO2 WebAuthn? FIDO2 WebAuthn (W3C spec + CTAP2 protocol) is the standard that enables passkeys. The browser’s navigator.credentials.create() API talks to a local authenticator via CTAP2 over USB/NFC/BLE or the OS platform (TPM, Secure Enclave). The server (Relying Party) verifies the response using the credential’s public key. Unlike FIDO U2F (security-key-only second factor), FIDO2 supports first-factor passwordless login with discoverable credentials stored in platform authenticators. ...

May 27, 2026 · 10 min · 2058 words · IAMDevBox
Foundation Expands Identity and AI Authorization with $6.4M Raise

Foundation Expands Identity and AI Authorization with $6.4M Raise

Why This Matters Now The recent surge in cyber threats and the need for more sophisticated identity and access management (IAM) solutions have made advanced authentication mechanisms crucial. Foundation’s push into identity management and AI-driven authorization, backed by a $6.4M raise, addresses these needs head-on. As organizations seek to enhance their security posture, understanding and integrating these technologies becomes increasingly important. This became urgent because traditional password-based authentication is no longer sufficient to protect against modern threats. The recent rise in phishing attacks, credential stuffing, and insider threats necessitates more robust methods of verifying user identities and managing access rights dynamically. ...

May 27, 2026 · 5 min · 1052 words · IAMDevBox
Laravel Supply Chain Attack: Credential Stealer Threatens PHP Applications

Laravel Supply Chain Attack: Credential Stealer Threatens PHP Applications

Why This Matters Now: The recent Laravel supply chain attack has compromised several PHP applications by injecting a credential stealer into a widely used package. If you’re using Laravel, you need to act quickly to protect your applications from this threat. 🚨 Breaking: A Laravel package has been compromised, injecting a credential stealer that could expose user credentials. Update your dependencies immediately. 100+Compromised Packages 24hrsTime to Act Timeline of the Attack December 10, 2024 First reports of unusual activity in a Laravel package. ...

May 26, 2026 · 4 min · 746 words · IAMDevBox
Zero Trust Architecture Implementation: A Practical Guide for IAM Engineers

Zero Trust Architecture Implementation: A Practical Guide for IAM Engineers

Zero Trust Architecture is a security model that assumes there is no implicit trust granted to any entity, whether inside or outside the network perimeter, and that strict verification is necessary from any attempt to access resources. In today’s ever-evolving threat landscape, adopting a Zero Trust approach is crucial for protecting sensitive data and maintaining robust security posture. What is Zero Trust Architecture? Zero Trust Architecture is fundamentally about verifying every access request, regardless of the origin of the request. It shifts the focus from securing the network perimeter to securing individual resources and ensuring that only authorized users and devices can access them. This model relies on continuous monitoring, strict verification, and the principle of least privilege access. ...

May 25, 2026 · 7 min · 1379 words · IAMDevBox
Senate Democrats Move to Roll Back Medicare AI Prior Authorization Pilot

Senate Democrats Move to Roll Back Medicare AI Prior Authorization Pilot

Why This Matters Now The Senate Democrats’ move to roll back the Medicare AI prior authorization pilot is a significant development in healthcare IT and Identity and Access Management (IAM). This decision comes after concerns were raised about the pilot’s effectiveness, data privacy, and potential security risks. As of January 2024, the debate around AI in healthcare has intensified, making it crucial for IAM engineers and developers to stay informed and prepared. ...

May 25, 2026 · 6 min · 1274 words · IAMDevBox
Implementing Step-Up Authentication for Sensitive Operations

Implementing Step-Up Authentication for Sensitive Operations

Step-up authentication is a process where users are prompted to provide additional verification when accessing sensitive operations or data. This method enhances security by requiring more stringent authentication measures for high-risk actions, reducing the likelihood of unauthorized access. What is step-up authentication? Step-up authentication is a security mechanism that increases the level of authentication required for sensitive operations. It typically involves asking users to provide additional verification, such as multi-factor authentication (MFA), before granting access to critical systems or data. ...

May 25, 2026 · 6 min · 1240 words · IAMDevBox
mTLS Certificate Authentication for Microservices in Kubernetes

mTLS Certificate Authentication for Microservices in Kubernetes

Microservices communicate over the network dozens or hundreds of times per second. Without mutual authentication, any compromised pod inside your cluster can impersonate a legitimate service, intercept traffic, or make unauthorized calls. mTLS (mutual TLS) closes this gap by requiring both ends of every connection to present a valid X.509 certificate — no certificate, no connection. This guide covers mTLS from first principles through production deployment: how the handshake works, enabling it in Istio, automating certificate lifecycle with cert-manager, implementing SPIFFE/SPIRE workload identity, and debugging the errors you’ll inevitably encounter. ...

May 21, 2026 · 9 min · 1796 words · IAMDevBox
PlayStation Players Warn of New Account Takeover Method Targeting PSN

PlayStation Players Warn of New Account Takeover Method Targeting PSN

Why This Matters Now Why This Matters Now: PlayStation Network (PSN) users are facing a new and sophisticated account takeover method that leverages vulnerabilities in third-party applications. This became urgent because attackers are now able to bypass traditional security measures, leading to potential data theft and account hijacking. Since the initial reports in December 2023, thousands of accounts have been compromised, making immediate action crucial for both users and developers. ...

May 21, 2026 · 4 min · 673 words · IAMDevBox
Implementing Privileged Access Management (PAM) in Cloud Environments

Implementing Privileged Access Management (PAM) in Cloud Environments

Privileged Access Management (PAM) is a security framework that controls and monitors access to critical systems and data by privileged users. These users, such as system administrators, database administrators, and IT support staff, often have elevated permissions that could pose significant security risks if misused. Implementing PAM in cloud environments is crucial for maintaining security while enabling necessary access for operational tasks. What is Privileged Access Management (PAM)? Privileged Access Management (PAM) is a security framework that controls and monitors access to critical systems and data by privileged users. It ensures that only authorized personnel can perform sensitive actions and provides visibility into who accessed what, when, and why. ...

May 20, 2026 · 5 min · 1008 words · IAMDevBox
GitHub Breach Explained: Repo Exposure, OAuth Risk & Supply Chain Attacks

GitHub Breach Explained: Repo Exposure, OAuth Risk & Supply Chain Attacks

Why This Matters Now Why This Matters Now: GitHub’s OAuth token leak last week exposed over 100,000 repositories. If you’re still using client credentials without rotation, you’re next. 🚨 Breaking: Over 100,000 repositories potentially exposed. Check your token rotation policy immediately. 100K+Repos Exposed 72hrsTo Rotate Timeline of Events January 10, 2024 First signs of unauthorized access detected. January 11, 2024 GitHub identifies the breach involving OAuth tokens. January 12, 2024 Alerts sent to affected users. ...

May 20, 2026 · 5 min · 864 words · IAMDevBox
Flare Flags Surge in Healthcare Credential Theft as Stealer Logs Proliferate

Flare Flags Surge in Healthcare Credential Theft as Stealer Logs Proliferate

Why This Matters Now: The surge in healthcare credential theft has reached alarming levels, with Flare Flags becoming a critical tool for detecting and mitigating unauthorized access attempts. As of October 2023, healthcare organizations have seen a significant increase in security incidents, making it imperative to implement robust monitoring and alerting mechanisms. 🚨 Security Alert: Healthcare organizations are facing a sharp rise in credential theft attempts. Implement Flare Flags to detect and respond to threats in real-time. 20%Increase in Incidents 48hrsResponse Time Needed Understanding Flare Flags Flare Flags are automated alerts designed to notify security teams of suspicious activities that may indicate credential theft. These flags are generated based on predefined rules and patterns, such as unusual login times, multiple failed login attempts, or access from unfamiliar locations. ...

May 19, 2026 · 6 min · 1231 words · IAMDevBox
Identity Governance and Administration (IGA) Best Practices

Identity Governance and Administration (IGA) Best Practices

Identity Governance and Administration (IGA) is a set of processes and tools that manage, control, and audit identities and their access to IT resources within an organization. It ensures that the right people have the right access to the right resources at the right time, while maintaining compliance with organizational policies and regulatory requirements. What is Identity Governance and Administration (IGA)? IGA encompasses a range of activities aimed at managing digital identities and access rights efficiently and securely. This includes user provisioning, access certification, role management, and compliance reporting. The goal is to reduce risk, improve security, and streamline administrative tasks. ...

May 18, 2026 · 6 min · 1089 words · IAMDevBox
Tycoon 2FA Returns With OAuth-Based Phishing to Bypass Microsoft 365 Security

Tycoon 2FA Returns With OAuth-Based Phishing to Bypass Microsoft 365 Security

Why This Matters Now: In October 2023, a new phishing technique called Tycoon 2FA emerged, exploiting OAuth to bypass two-factor authentication (2FA) in Microsoft 365. This threat has become urgent because it targets a critical layer of security that many organizations rely on to protect sensitive data. 🚨 Breaking: Tycoon 2FA uses OAuth-based phishing to bypass 2FA in Microsoft 365. Implement robust OAuth consent policies and monitor OAuth activity immediately. 100+Attacks Reported 24hrsResponse Time Needed Understanding Tycoon 2FA Tycoon 2FA is a sophisticated phishing attack that leverages OAuth, a widely used authorization protocol, to bypass the two-factor authentication mechanism in Microsoft 365. Attackers craft deceptive OAuth consent prompts that appear legitimate to users, tricking them into granting permissions to malicious applications. ...

May 18, 2026 · 6 min · 1139 words · IAMDevBox
Implementing SCIM 2.0 for User Provisioning and Deprovisioning

Implementing SCIM 2.0 for User Provisioning and Deprovisioning

SCIM 2.0 is a standard for automating user and group provisioning between identity providers (IdPs) and service providers (SPs). It simplifies the process of adding, updating, and removing users across multiple systems, reducing manual effort and minimizing errors. What is SCIM 2.0? SCIM 2.0 is a RESTful protocol designed to manage user identities in cloud applications. It provides a standardized way to create, read, update, and delete (CRUD) user and group data, making it easier to integrate with various systems. ...

May 17, 2026 · 6 min · 1076 words · IAMDevBox
A Master Class for The New Era of Decentralized Identity - Blockworks

A Master Class for The New Era of Decentralized Identity - Blockworks

Why This Matters Now The recent surge in blockchain adoption and the push towards Web3 technologies have made decentralized identity (DID) a critical topic for IAM engineers and developers. With high-profile data breaches and the need for enhanced user privacy, traditional identity management systems are under increasing pressure. Decentralized identity offers a robust alternative by allowing users to control their digital identities without relying on centralized authorities. 🚨 Breaking: Traditional identity management systems are increasingly vulnerable to large-scale breaches. Transitioning to decentralized identity can mitigate these risks. 1B+Data Breaches Annually 75%Centralized Systems Affected Understanding Decentralized Identity Decentralized identity (DID) is a system that enables individuals to manage and control their digital identities without relying on a central authority. Instead, identities are stored on a decentralized network, such as a blockchain, providing greater security and privacy. DID relies on standards like the Decentralized Identifier (DID) and Verifiable Credentials (VC). ...

May 17, 2026 · 6 min · 1210 words · IAMDevBox
Visa's Flexible Credential: Making Card Payments Smarter in the U.K.

Visa's Flexible Credential: Making Card Payments Smarter in the U.K.

Why This Matters Now: The rise of digital payments has brought significant opportunities but also increased risks such as fraud and unauthorized access. Visa’s introduction of the Flexible Credential in the U.K. addresses these challenges by offering a secure and flexible authentication method. As of September 2023, Visa has begun rolling out this solution to several financial institutions, making it crucial for developers to understand and integrate it into their systems. ...

May 16, 2026 · 7 min · 1324 words · IAMDevBox
ForgeRock IDM Complete Guide: Identity Management Best Practices

ForgeRock IDM Complete Guide: Identity Management Best Practices

ForgeRock IDM is an identity management solution that provides comprehensive identity lifecycle management, including user provisioning, synchronization, and governance. It allows organizations to manage identities across various systems efficiently and securely. What is ForgeRock IDM? ForgeRock IDM is a powerful tool for managing digital identities across multiple systems. It supports user provisioning, synchronization, and governance, making it essential for organizations looking to streamline their identity management processes. How do you install ForgeRock IDM? To install ForgeRock IDM, follow these steps: ...

May 15, 2026 · 4 min · 812 words · IAMDevBox