惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
A
About on SuperTechFans
J
Java Code Geeks
G
Google Developers Blog
L
LangChain Blog
小众软件
小众软件
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
博客园 - 【当耐特】
IT之家
IT之家
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
博客园 - Franky
博客园_首页
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
Vercel News
Vercel News
B
Blog
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
A password and a PIN aren't multifactor: the Security+ au...
TiltedLunar123 · 2026-06-17 · via DEV Community

TiltedLunar123

If you have spent any time on SY0-701 practice questions, you have hit at least one that looks trivial and then quietly fails you. Authentication factor questions are a favorite for this. The scenario sounds secure, the answer feels obvious, and the obvious answer is wrong.

Here is the version that catches people. A login asks for your password, then a PIN, then your mother's maiden name. Three prompts, three steps. Is that multifactor authentication?

No. It is single-factor wearing a costume.

Factors are categories, not steps

The exam wants you thinking about authentication in terms of categories, not how many boxes you fill in. There are three classic factors:

  • Something you know (knowledge): a password, a PIN, a security question, a passphrase.
  • Something you have (possession): a phone running an authenticator app, a hardware token, a smart card, a code texted to a device you are holding.
  • Something you are (inherence): a fingerprint, a face scan, an iris pattern, a voiceprint.

Multifactor authentication means pulling from different categories. A password (know) plus a code from your authenticator app (have) is two factors. A password plus a PIN plus a security question is still one factor, because all three are things you know. Stacking more knowledge on top of knowledge never changes the category.

That is the entire trick. The question piles on prompts so it feels layered, and the count baits you into answering "three things, must be multifactor." Read for the category, not the quantity.

The two factors people forget

SY0-701 also expects you to recognize two more that sit just outside the classic three:

  • Somewhere you are (location): access is allowed or blocked based on geolocation or which network you are on. A login permitted only from inside the corporate IP range leans on this.
  • Something you do (behavioral): how you type, your gait, the rhythm of your swipe. This is the fuzziest one, and the exam treats it as a real but supporting signal.

You will not see these as often, but when a question mentions "access granted only from the on-site network" or "keystroke dynamics," you need to drop it in the right bucket without hesitating.

Authentication is not authorization

While we are here, the other word the exam loves to swap on you: authorization. Authentication answers "are you who you claim to be." Authorization answers "now that I know who you are, what are you allowed to touch." Someone can authenticate perfectly and still be denied authorization to a file. When a question describes a user proving identity, that is authentication. When it describes the permissions they get afterward, that is authorization. Both live in the IAAA model (identification, authentication, authorization, accounting), and the test rewards you for not blurring them.

How to handle these under exam pressure

When a factor question shows up, run three steps:

  1. List every credential the scenario actually uses.
  2. Tag each one with its category: know, have, are, where, or do.
  3. Count the distinct categories. Two or more, it is multifactor. One, it is not, no matter how many prompts there were.

It takes about five seconds once it is reflex, and it turns a trap question into a free point.

The deeper lesson fits most of SY0-701: the exam is rarely checking whether you can recite a definition. It is checking whether you can apply that definition to a scenario written to make the wrong answer feel natural. The fix is not more flashcards. It is practicing on questions built the same sneaky way the real ones are.

That is the reason I built SecPlus Mastery, a practice platform for SY0-701 with questions phrased to mirror how the real exam sets these traps, plus reading lessons and hands-on labs for the concepts underneath them. If you want to see where your authentication and access-control instincts actually stand, the free diagnostic exam is a no-signup way to find your weak domains before you pour hours into the wrong ones.

Get the factor question right by reading for the category instead of the count, and you have already beaten the version of it that beats most people.