From 2e59f0cbe600222b16261248bd550fe678c6b2ee Mon Sep 17 00:00:00 2001 From: Kirill Mesnyankin Date: Tue, 15 Jan 2019 21:37:34 +0300 Subject: [PATCH] Add Geotagging check --- config/data.js | 2 ++ config/geotagging.js | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 config/geotagging.js diff --git a/config/data.js b/config/data.js index e544ed6..5fe7eb5 100644 --- a/config/data.js +++ b/config/data.js @@ -13,6 +13,7 @@ import appPermissions from './appPermissions'; import socialMedia from './socialMedia'; import phishing from './phishing'; import webcam from './webcam'; +import geotagging from './geotagging'; export default { passwordManager, @@ -28,6 +29,7 @@ export default { searchEngine, email, appPermissions, + geotagging, socialMedia, phishing, }; diff --git a/config/geotagging.js b/config/geotagging.js new file mode 100644 index 0000000..3acdceb --- /dev/null +++ b/config/geotagging.js @@ -0,0 +1,36 @@ +export default { + id: 'geotagging', + title: 'Turn OFF Geotagging for your media', + description: `Geotagging is the process of adding geographical identification to a media files (photos, videos, etc.). Anyone who has access to your media files (for example, in Instagram or Twitter) can read this data and find out information that you wouldn’t want to disclose. + + \n\nEnsure that your camera does not tag your photos and videos with the current Geo Position. + `, + resources: [ + { + name: 'Geotagging', + url: 'https://en.wikipedia.org/wiki/Geotagging', + }, + { + name: 'What is Geotag Security and How it Helps to Protect Your Family', + url: 'https://www.geotag-security.com/', + }, + { + name: 'Web Photos That Reveal Secrets, Like Where You Live', + url: + 'https://www.nytimes.com/2010/08/12/technology/personaltech/12basics.html', + }, + { + name: 'How to Avoid the Potential Risks of Geotagging', + url: 'https://www.wikihow.com/Avoid-the-Potential-Risks-of-Geotagging', + }, + { + name: 'How to Turn OFF Geotagging For Photos On iPhone and iPad', + url: + 'https://www.techbout.com/turn-off-geotagging-for-photos-iphone-ipad-8738/', + }, + { + name: 'How To Turn Off Geotagging On Android Devices', + url: 'https://www.technobezz.com/turn-off-geotagging-android-devices/', + }, + ], +};