mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
85 lines
2.8 KiB
JavaScript
85 lines
2.8 KiB
JavaScript
export default {
|
||
id: 'browsers',
|
||
title: 'Use a privacy-first web browser',
|
||
description: `You should use a web browser that protects you from tracking, fingerprinting, and unwanted advertisements.
|
||
|
||
Modern browsers have made it simple to transfer your bookmarks and preferences in order to reduce switching pains.
|
||
`,
|
||
apps: [
|
||
{
|
||
name: 'Brave',
|
||
image: '/static/img/brave.jpg',
|
||
url: 'https://brave.com/',
|
||
sources: {
|
||
windows: 'https://laptop-updates.brave.com/latest/winx64',
|
||
macos: 'https://laptop-updates.brave.com/latest/osx',
|
||
ios:
|
||
'https://geo.itunes.apple.com/us/app/brave-web-browser/id1052879175?mt=8',
|
||
android:
|
||
'https://play.google.com/store/apps/details?id=com.brave.browser&hl=en',
|
||
},
|
||
},
|
||
{
|
||
name: 'Firefox',
|
||
image: '/static/img/firefox.jpg',
|
||
url: 'https://www.mozilla.org/en-US/firefox/',
|
||
sources: {
|
||
windows: 'https://www.mozilla.org/en-US/firefox/',
|
||
macos: 'https://www.mozilla.org/en-US/firefox/',
|
||
ios: 'https://www.mozilla.org/en-US/firefox/mobile/',
|
||
android: 'https://www.mozilla.org/en-US/firefox/mobile/',
|
||
},
|
||
},
|
||
{
|
||
name: 'Safari',
|
||
image: '/static/img/safari.jpg',
|
||
url: 'https://www.apple.com/safari/',
|
||
sources: {
|
||
macos: 'https://www.apple.com/safari/',
|
||
ios: 'https://www.apple.com/safari/',
|
||
},
|
||
},
|
||
{
|
||
name: 'Tor',
|
||
image: '/static/img/tor.png',
|
||
url: 'https://www.torproject.org/',
|
||
sources: {
|
||
windows:
|
||
'https://www.torproject.org/projects/torbrowser.html.en#windows',
|
||
macos: 'https://www.torproject.org/projects/torbrowser.html.en#macosx',
|
||
},
|
||
},
|
||
],
|
||
resources: [
|
||
{
|
||
name: 'Don’t expect privacy from Chrome',
|
||
url:
|
||
'https://www.digitaltrends.com/computing/google-chrome-incognito-mode-tracking/',
|
||
},
|
||
{
|
||
name: 'Google Chrome‘s users take a back seat to its bottom line',
|
||
url:
|
||
'https://www.eff.org/deeplinks/2018/11/google-chromes-users-take-back-seat-its-bottom-line',
|
||
},
|
||
{
|
||
name: 'What data of mine does Chrome send to Google?',
|
||
url:
|
||
'https://lifehacker.com/5763452/what-data-does-chrome-send-to-google-about-me',
|
||
},
|
||
{
|
||
name: 'Firefox multi-account containers',
|
||
url:
|
||
'https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/',
|
||
},
|
||
{
|
||
name: 'How to protect yourself from browser fingerprinting',
|
||
url:
|
||
'https://www.comparitech.com/blog/vpn-privacy/what-is-browser-fingerprinting-how-to-protect-yourself/',
|
||
},
|
||
{
|
||
name: 'Browser fingerprinting, and why they are so hard to erase',
|
||
url:
|
||
'https://www.networkworld.com/article/2884026/security0/browser-fingerprints-and-why-they-are-so-hard-to-erase.html',
|
||
},
|
||
],
|
||
};
|