mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
19 lines
764 B
JavaScript
19 lines
764 B
JavaScript
export default {
|
|
id: 'strongDevicePasscode',
|
|
title: 'Create a strong device passcode',
|
|
description: `A four-digit passcode for your phone or other devices is no longer an acceptable security practice. You should be using a 6+ digit passcode at the very minimum, and for extra security use a 6+ character passcode containing both numbers and letters.`,
|
|
resources: [
|
|
{
|
|
name: 'How long it takes to break a passcode',
|
|
url: 'http://fortune.com/2016/03/18/apple-fbi-iphone-passcode-hack/',
|
|
},
|
|
{
|
|
name: 'Changing your iOS passcode',
|
|
url: 'https://support.apple.com/en-us/HT204060',
|
|
},
|
|
{
|
|
name: 'Setting up an Android passcode',
|
|
url: 'https://phandroid.com/2014/03/20/android-101-lock-screen/',
|
|
},
|
|
],
|
|
};
|