mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
82 lines
2.9 KiB
JavaScript
82 lines
2.9 KiB
JavaScript
export default {
|
|
id: 'twoFactor',
|
|
title: 'Two-Factor Authentication (2FA)',
|
|
description: `Two-factor authentication is an extra layer of security on top of passwords. It ensures that someone logging into an account is who they say they are by requiring an extra piece of information besides the account password.
|
|
|
|
\n\nThis extra information is usually either something you know, something you have, or something you are - for example, a biometric signal like FaceID.
|
|
|
|
\n\n**You should not use your phone number as a two-factor method.**
|
|
|
|
\n\n2FA should be installed on accounts that can lock you out of other accounts: e.g. a Google account, email applications, an Apple ID, and financial accounts.
|
|
`,
|
|
apps: [
|
|
{
|
|
name: '1Password',
|
|
image: '/static/img/1password.jpg',
|
|
url: 'https://1password.com/',
|
|
sources: {
|
|
windows: 'https://1password.com/downloads/windows/',
|
|
macos: 'https://1password.com/downloads/mac/',
|
|
ios: 'https://1password.com/downloads/ios/',
|
|
android: 'https://1password.com/downloads/android/',
|
|
},
|
|
},
|
|
{
|
|
name: 'LastPass',
|
|
image: '/static/img/lastpass.jpg',
|
|
url: 'https://www.lastpass.com/',
|
|
sources: {
|
|
windows:
|
|
'https://download.cloud.lastpass.com/windows_installer/lastpass.exe',
|
|
macos:
|
|
'https://itunes.apple.com/us/app/lastpass/id926036361?ls=1&mt=12',
|
|
ios:
|
|
'https://itunes.apple.com/us/app/lastpass-password-manager/id324613447',
|
|
android: 'https://lastpass.com/android_market.php',
|
|
},
|
|
},
|
|
{
|
|
name: 'Authy',
|
|
image: '/static/img/authy.jpg',
|
|
url: 'https://authy.com/',
|
|
sources: {
|
|
windows: 'https://authy.com/download/',
|
|
macos: 'https://authy.com/download/',
|
|
ios: 'https://itunes.apple.com/us/app/authy/id494168017',
|
|
android:
|
|
'https://play.google.com/store/apps/details?id=com.authy.authy',
|
|
},
|
|
},
|
|
{
|
|
name: 'Google Authenticator',
|
|
image: '/static/img/google-authenticator.jpg',
|
|
url: 'https://www.google.com/landing/2step/',
|
|
sources: {
|
|
ios: 'https://itunes.apple.com/us/app/google-authenticator/id388497605',
|
|
android:
|
|
'https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en_us',
|
|
},
|
|
},
|
|
{
|
|
name: 'YubiKey',
|
|
image: '/static/img/yubico.jpg',
|
|
url: 'https://www.yubico.com/',
|
|
},
|
|
],
|
|
resources: [
|
|
{
|
|
name: 'What is two-factor authentication?',
|
|
url: 'https://authy.com/what-is-2fa/',
|
|
},
|
|
{
|
|
name: 'Two-factor authentication: a little goes a long way',
|
|
url:
|
|
'https://securityintelligence.com/two-factor-authentication-a-little-goes-a-long-way/',
|
|
},
|
|
{
|
|
name: 'So hey, you should stop using texts for two-factor authentication',
|
|
url:
|
|
'https://www.wired.com/2016/06/hey-stop-using-texts-two-factor-authentication/',
|
|
},
|
|
],
|
|
};
|