Understanding Authentication Factors: Something You Know, Have, Are
📖 Scenario: You are learning about how systems verify who you are when you log in. This is important to keep your accounts safe. There are three main ways systems check your identity: something you know, something you have, and something you are.Imagine you are setting up a simple checklist to remember these three types of authentication factors.
🎯 Goal: Build a simple list of authentication factors with examples for each type: something you know, something you have, and something you are.
📋 What You'll Learn
Create a dictionary named
auth_factors with keys for each factor typeAdd a list of two examples for each factor type
Create a variable named
factor_types that holds the keys of the dictionaryUse a
for loop with variables factor and examples to iterate over auth_factors.items()Add a final statement that sets a variable
completed to True to mark the checklist as done💡 Why This Matters
🌍 Real World
Authentication factors are used every day to protect online accounts, devices, and secure areas. Understanding these helps you recognize how security works and how to keep your information safe.
💼 Career
Knowledge of authentication factors is essential for cybersecurity roles, IT support, and anyone involved in designing or managing secure systems.
Progress0 / 4 steps