2019-01-13 07:00:23 +00:00
|
|
|
import passwordManager from './passwordManager';
|
2019-01-13 20:12:45 +00:00
|
|
|
import strongDevicePasscode from './strongDevicePasscode';
|
|
|
|
|
import twoFactor from './twoFactor';
|
2019-01-13 20:58:28 +00:00
|
|
|
import carrierPin from './carrierPin';
|
2019-01-13 20:12:45 +00:00
|
|
|
import creditFreeze from './creditFreeze';
|
|
|
|
|
import encryptedHardware from './encryptedHardware';
|
|
|
|
|
import dns from './dns';
|
|
|
|
|
import vpn from './vpn';
|
|
|
|
|
import browsers from './browsers';
|
|
|
|
|
import searchEngine from './searchEngine';
|
|
|
|
|
import email from './email';
|
|
|
|
|
import appPermissions from './appPermissions';
|
|
|
|
|
import socialMedia from './socialMedia';
|
2019-01-18 18:33:29 +00:00
|
|
|
import patching from './patching';
|
2019-01-13 20:12:45 +00:00
|
|
|
import phishing from './phishing';
|
2019-01-17 01:20:14 +00:00
|
|
|
import physicalPrivacy from './physicalPrivacy';
|
2019-01-15 18:37:34 +00:00
|
|
|
import geotagging from './geotagging';
|
2019-01-17 02:27:10 +00:00
|
|
|
import messagingApps from './messagingApps';
|
2019-01-13 07:00:23 +00:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
passwordManager,
|
2019-01-13 20:12:45 +00:00
|
|
|
strongDevicePasscode,
|
|
|
|
|
twoFactor,
|
2019-01-13 20:58:28 +00:00
|
|
|
carrierPin,
|
2019-01-13 20:12:45 +00:00
|
|
|
encryptedHardware,
|
2019-01-14 00:16:09 +00:00
|
|
|
creditFreeze,
|
2019-01-13 20:12:45 +00:00
|
|
|
dns,
|
|
|
|
|
vpn,
|
2019-01-17 01:20:14 +00:00
|
|
|
physicalPrivacy,
|
2019-01-13 20:12:45 +00:00
|
|
|
browsers,
|
|
|
|
|
searchEngine,
|
|
|
|
|
email,
|
|
|
|
|
appPermissions,
|
2019-01-15 18:37:34 +00:00
|
|
|
geotagging,
|
2019-01-13 20:12:45 +00:00
|
|
|
socialMedia,
|
2019-01-17 02:27:10 +00:00
|
|
|
messagingApps,
|
2019-01-13 20:12:45 +00:00
|
|
|
phishing,
|
2019-01-18 18:33:29 +00:00
|
|
|
patching
|
2019-01-13 07:00:23 +00:00
|
|
|
};
|