Real-Time Personalization in SaaS: How It Works
Learn how real-time personalization in SaaS enhances user engagement and boosts conversion rates through data-driven insights and AI technology.
Deploy phishing‑resistant MFA in SaaS: use passkeys/FIDO2 for high‑risk roles, TOTP/push for users, IdP enforcement and step‑up controls.
If you run a SaaS app, MFA should be on by default. Stolen credentials show up in more than 50% of breaches, and Microsoft says MFA blocks 99.9% of automated password attacks.
Here’s the short version:
A few points matter more than the rest:

| MFA method | Phishing resistance | Friction | Best fit |
|---|---|---|---|
| SMS / Email OTP | Low | Low | Backup-only, low-risk use cases |
| TOTP app | Medium | Medium | Standard workforce access |
| Push MFA | Medium | Low | General user sign-in |
| Push + number matching | Medium-High | Low | General workforce with better prompt control |
| FIDO2 security key | High | Medium | Admins, developers, finance, high-risk roles |
| Passkey | High | Low | Modern SaaS sign-in for both B2B and B2C |
| Biometric with WebAuthn | High | Low | Device-based sign-in, mobile and desktop |
If I had to reduce the whole guide to one line, it would be this: use phishing-resistant MFA for high-risk accounts, enforce it in one place, and treat recovery and session controls as part of the same system.
MFA Methods Compared: Security, Phishing Resistance & Friction for SaaS
Not all MFA methods protect accounts in the same way. The right pick depends on the user's role, what they can access, and how likely they are to face phishing. It also needs to line up with how you enforce MFA through SSO and central identity controls.
TOTP apps like Google Authenticator or Authy are the starting point for most SaaS setups. They're free, work offline, and are safer than SMS. But there's a catch: they can still be beaten by real-time phishing proxies, where an attacker grabs the code as soon as the user enters it.
Push MFA is easy for users, which is why teams like it. The downside is push fatigue attacks. If users get hit with enough prompts, some will tap approve just to make them stop. Number matching helps block that. It asks the user to enter a code shown on the login screen into the app before approval goes through.
SMS and email OTPs are the weakest options. SMS can be hit by SIM swapping and message interception. Email OTP is only as safe as the email account behind it. These methods can work as backups in low-risk cases, but they shouldn't be the main factor for employees or privileged accounts.
"Any MFA is better than no MFA." - OWASP
FIDO2 security keys and passkeys are the top choice for phishing resistance because they are cryptographically tied to the origin. Put plainly, if someone lures a user to a fake login page, the credential won't work on the wrong domain.
FIDO2 security keys usually cost $25 to $70 per device. Passkeys are becoming the default path for passwordless sign-in. They rely on one credential that the user unlocks with a biometric check or a device PIN on devices like Touch ID or Windows Hello. For SaaS teams, that can cut password-reset support work and help improve conversion rates.
Biometrics are at their best when paired with FIDO2/WebAuthn. In that setup, they get the same phishing-resistant properties as passkeys.
MFA strength should match account risk and access scope. Admin and developer accounts need phishing-resistant methods because a compromise there can spread damage far beyond one user. That's why role-based tiers make more sense than one blanket MFA rule for everyone.
Here’s how the main methods stack up across security, phishing resistance, user friction, compliance fit, and common SaaS use cases:
| Method | Security Strength | Phishing Resistant | User Friction | Compliance Fit | Common SaaS Use Case |
|---|---|---|---|---|---|
| SMS / Email OTP | Low | No | Low | Poor (Restricted) | Legacy fallback, low-risk B2C |
| TOTP Apps | Medium | No | Medium | Good | Standard employee access |
| Push (Basic) | Medium | No | Very Low | Fair | Consumer SaaS convenience |
| Push (Number Match) | Medium-High | Partially | Low | Good | General workforce, B2B |
| Security Keys (FIDO2) | Very High | Yes | Medium | Excellent | Admins, privileged access |
| Passkeys | Very High | Yes | Very Low | Excellent | Modern B2B/B2C, passwordless |
| Biometrics | High | Yes (if FIDO2) | Very Low | Good | Mobile apps, device-bound access |
Use tiered enforcement so the level of assurance matches the account's blast radius. Picking a method is only the first step. Policy, SSO, and audit evidence decide whether MFA stands up in production.
Picking an MFA method is only half the job. It also has to be enforced the same way across every app, user, and system. That means turning your MFA setup into a written policy, a set of controls, and a clean audit trail.
Use AAL2 for most SaaS logins and AAL3 for privileged actions like admin grants, billing changes, and API key creation. SOC 2, HIPAA, and PCI DSS all push MFA at the access boundary.
A written MFA policy turns a technical setting into something auditors can test and operators can follow. It should spell out who is in scope, which authenticators are allowed, when step-up authentication is required, how long sessions stay valid, and what to do when a legacy system can’t support modern protocols.
Exceptions need to be written down. Every bypass should have an owner, a compensating control like IP allowlisting, and an expiration date. If a legacy app doesn’t support modern protocols, put a reverse proxy or VPN gateway in front of it. A centralized exception register makes it much easier to see what was approved and when it needs review.
The table below turns MFA method selection into policy by role and risk:
| User Role | Required MFA Method | Step-Up Triggers | Audit Evidence Needed |
|---|---|---|---|
| Standard User | TOTP, push with number matching, or passkey | New device, new location, 24 hours | Timestamp, IP, device ID |
| Admin / Developer | FIDO2 security key or platform authenticator | Every session, role grant, API key generation, data export | Enrollment log, challenge type, device ID, IP address |
| Finance / Billing | Hardware-bound FIDO2 security key | All logins, payment method change, high-value spend | Verification ID, timestamp |
| External Contractor | Any approved MFA, no SMS | Every login | Access duration, login timestamp, app-specific logs |
Vendor and contractor access needs its own rule. External users should get prompted on every login, with no persistent sessions. And for elevated access, SMS should stay off the approved list.
Role-based MFA starts to break when each app handles enforcement in its own way. The better path is to enforce MFA in the IdP with SAML or OIDC so every app follows the same policy.
For enterprise tenants, use SSO for the main identity assertion, then add step-up authentication for sensitive actions. If a user tries to export bulk customer data, change billing details, or create a production API key, that action should trigger a new MFA challenge even if the session is still active. OAuth tokens can outlive MFA, which is where teams get burned, so inventory and review all grants on a regular basis.
Logs are how you show MFA is working, not just switched on. Capture factor enrollment, successful and failed challenges, step-up triggers, bypass events, recovery actions, device identifiers, IP addresses, and impossible-travel signals.
Keep per-tenant logs for at least one year. Store them in immutable, tamper-evident storage so they can’t be changed after the fact. Send log exports into your SIEM so odd behavior shows up in real time instead of only during quarterly reviews. Those same logs also support step-up rules, recovery review, and incident response.
Recovery procedures get heavy scrutiny because MFA resets are often the weakest link. Require manager approval or a video verification step before any factor reset for a privileged account. Use single-use backup codes at enrollment, and reject security question-based recovery.
Once the policy and architecture are set, the next step is simple: make MFA work in live systems. A policy on paper doesn't help much if the rollout falls apart in production.
Start with a full inventory of every SaaS app, shadow IT tool, and OAuth grant. Then map which systems support MFA and which ones depend on your IdP.
Before you flip the switch for the whole company, run a small pilot with IT staff and technically comfortable volunteers. This is where you catch the annoying stuff early: rough enrollment steps, unclear setup docs, and recovery flow problems that would otherwise hit everyone at once.
Roll out MFA from highest risk to lowest: admins, VPN and remote access, email, critical cloud apps, and then the rest of the company.
Give people notice before each phase starts, and tell them why it's happening. Short video walkthroughs and visual setup guides can cut down support tickets fast. You can also allow limited deferrals before access is blocked.
| Phase | Main Technical Tasks | Owners | Expected Outcomes |
|---|---|---|---|
| 1. Assessment | Audit SaaS stack; map high-risk roles and legacy app gaps | IT / Security | Full inventory with risk map |
| 2. Pilot | Enable MFA for IT and tech-savvy volunteers; test recovery flows | IT Team | Validated enrollment, bug fixes |
| 3. Enrollment | Launch communication campaign; publish setup guides and videos | HR / Comms | High voluntary enrollment |
| 4. Staged Enforcement | Mandate MFA for admins, then VPN, then all users | Security Ops | Full coverage for privileged accounts |
| 5. Optimization | Add adaptive MFA; monitor for fatigue and helpdesk volume | Security Ops | Lower friction, fewer tickets |
It also helps to open a dedicated support channel for the first few days of each enforcement phase. When people get locked out or hit enrollment issues, a team that can fix the problem in real time makes a big difference.
One more thing: require users to generate and store one-time recovery codes during enrollment. Don't leave this for later. Make it a required part of the flow.
After you have broad coverage, the focus shifts. The goal is no longer just enforcement. It's reducing friction without giving up control.
After rollout, move from universal enforcement to risk-based enforcement. Static MFA tends to create prompt fatigue, and that doesn't do much for low-risk access.
A better setup uses risk-based triggers. Look at signals such as device fingerprint, IP reputation, geo-velocity, impossible travel, and whether the device is managed or personal. A managed laptop in the office shouldn't face the same friction as an admin login from an unusual location.
Use step-up authentication for sensitive actions like:
Short session lifetimes for standard users, plus reauthentication for admins, can limit the blast radius if a token gets stolen.
To block push-bombing attacks, turn on number matching. Instead of tapping Approve, the user has to enter a code shown on the login screen into their authenticator app. Also rate-limit push prompts and alert security when repeated attempts show up.
Non-human access needs its own controls because it can't complete MFA. Machine identities need a different setup.
Use OAuth client credentials, mTLS, and managed identities instead of passwords or shared secrets. Rotate secrets on a set schedule, and monitor each token for odd behavior, like sudden spikes in request volume or calls from unexpected IP ranges.
Admins who manage service accounts should use FIDO2 security keys for every session. Legacy protocols such as POP and IMAP that can't support modern MFA should be disabled outright or locked down to specific, audited service principals that use app passwords.
Keep at least one break-glass account offline, tested, logged, and outside normal IdP MFA flows. Store it as part of outage recovery, and log and review every use after each incident.
MFA rollout is just the beginning. The day you turn it on isn't the day the job is done. Governance is what keeps coverage current as apps change, people move into new roles, and attackers shift tactics.
MFA coverage drifts over time. New apps show up, users switch roles, and service accounts pile up. If nobody checks the system on a set cadence, gaps can open quietly.
Treat MFA as a coverage metric, not a one-and-done setup.
The table below shows the main metrics to track, who owns them, and how often to review them:
| Metric | Responsible Team | Review Frequency |
|---|---|---|
| MFA Adoption Rate | IT / Identity Team | Monthly |
| Factor Mix (% Passkeys vs. TOTP) | Identity Architecture | Quarterly |
| Bypass Rate | Security Operations | Weekly |
| Push Fatigue Signals | SOC / ITDR | Real-time |
| Recovery Resets | Security / IT Admin | Weekly |
| Deprovisioning Gaps | HR / IT Ops | Quarterly |
| Geo-Velocity Anomalies | Security Operations | Real-time |
These signals should feed policy updates, recovery changes, and enforcement tweaks before small holes turn into bigger ones.
Your incident response process also needs to cover MFA-specific cases: push bombing, account recovery abuse, token replay, and rogue OAuth consent grants after a user has already passed MFA. Those are the same post-login risks covered earlier in the session risk and OAuth sections. When an identity incident happens, check three things right away: whether MFA was on, which factor was used, and whether recovery was triggered.
For any privileged factor reset, require video verification or manager approval. Recovery flows should never quietly skip the second factor.
Once coverage is steady, the focus shifts from rollout to control quality.
A small set of choices has an outsized effect on whether MFA keeps doing its job. Use FIDO2 keys or passkeys by default for admins and anyone with access to sensitive data or payment systems. For standard users, use TOTP or number-matched push. Keep SMS as a last-resort backup because of SIM-swapping and SS7 risk.
Policy should follow role and risk, not convenience. It also helps to centralize enforcement in the IdP, so policy updates apply across the SaaS estate at the same time. And monitoring can't be treated as a side task. It's part of the control itself, because token replay, rogue OAuth grants, and session hijacking happen after login.
For teams updating SaaS and AI systems, Optiblack supports the product, data, and analytics foundation that scalable access controls depend on.
There’s no one-size-fits-all MFA method. The right pick depends on your risk level and what your users can handle day to day.
FIDO2-based methods - including hardware security keys and passkeys - are the gold standard. They’re the only options that use cryptography to block phishing in a meaningful way.
For most employees, TOTP apps are a solid, low-cost baseline. They strike a good balance between security, price, and ease of use.
For high-risk roles, though, that baseline isn’t enough. Those users need phishing-resistant MFA.
The practical move is to use adaptive, risk-based policies. That way, you can apply stricter MFA only when the situation calls for it, instead of putting every user through the same level of friction.
Require step-up authentication when users try to do something sensitive or reach a high-risk resource. That way, you keep security tight without interrupting people all the time.
Common triggers include:
Use risk-based sign-in checks instead of static challenges. That means MFA shows up only when it’s needed, based on live signals like device trust, location, and user behavior. Low-risk logins stay smooth, so people aren’t forced through extra steps every time.
For an easier rollout, start with a pilot group and explain the security upside in plain English. Give people a choice of sign-in methods, such as authenticator apps or passkeys. Also, make sure you have a solid account recovery process in place so users don’t get locked out.
Learn how real-time personalization in SaaS enhances user engagement and boosts conversion rates through data-driven insights and AI technology.
Compare seven scalable tools for large-data synchronization—real-time vs batch, connectors, deployment options, and best use cases.
Discover the power of context-aware recommender systems that enhance personalization by adapting to your current situation across various industries....
Be the first to know about new B2B SaaS Marketing insights to build or refine your marketing function with the tools and knowledge of today’s industry.