simPin => carrierPin

This commit is contained in:
Brian Lovin 2019-01-13 12:58:28 -08:00
parent c2da7af755
commit 14adce7706
2 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,6 @@
export default {
id: 'simPin',
title: 'Set up a carrier SIM PIN',
id: 'carrierPin',
title: 'Set up a mobile carrier PIN',
description: `SIM hijacking is a method where a hacker can socially engineer or bribe a mobile carrier to transfer your phone number to a SIM card the hacker owns.
\n\nIf you use text messages as a two-factor authentication method, this gives hackers the ability to bypass 2FA and in most cases reset your passwords completely.

View file

@ -1,7 +1,7 @@
import passwordManager from './passwordManager';
import strongDevicePasscode from './strongDevicePasscode';
import twoFactor from './twoFactor';
import simPin from './simPin';
import carrierPin from './carrierPin';
import creditFreeze from './creditFreeze';
import encryptedHardware from './encryptedHardware';
import dns from './dns';
@ -12,12 +12,13 @@ import email from './email';
import appPermissions from './appPermissions';
import socialMedia from './socialMedia';
import phishing from './phishing';
import webcam from './webcam';
export default {
passwordManager,
strongDevicePasscode,
twoFactor,
simPin,
carrierPin,
creditFreeze,
encryptedHardware,
dns,
@ -26,6 +27,7 @@ export default {
searchEngine,
email,
appPermissions,
webcam,
socialMedia,
phishing,
};