[tor-commits] [tpo/master] Update press clips

hiro at torproject.org hiro at torproject.org
Mon Feb 22 14:19:10 UTC 2021


commit 480cd6e513dae143bd6b9bee22d8445bfabf7625
Author: hiro <hiro at torproject.org>
Date:   Mon Feb 22 15:19:01 2021 +0100

    Update press clips
---
 bin/csv_to_markdown                                | 46 ++++++++++++++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr"                                   | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 content/press/privacy-isnt-radical/contents.lr     | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../contents.lr                                    | 20 ++++++++++
 .../why-more-apps-should-integrate-tor/contents.lr | 20 ++++++++++
 31 files changed, 646 insertions(+)

diff --git a/bin/csv_to_markdown b/bin/csv_to_markdown
new file mode 100755
index 00000000..fe0c697e
--- /dev/null
+++ b/bin/csv_to_markdown
@@ -0,0 +1,46 @@
+#!/usr/bin/python3
+
+import csv
+import os
+import re
+import sys
+
+
+csv_file = sys.argv[1]
+
+with open(csv_file, newline='') as csvfile:
+  spamreader = csv.reader(csvfile, delimiter=',', quotechar='"')
+  for row in spamreader:
+    publisher = row[0]
+    re_path = re.sub(r'[^\w\s]','',row[1]).lower()
+    create_path = re.sub(' ','-',re_path)
+    title = row[1]
+    date = row[2].split('/')
+    pub_date = "{}-{}-{}".format(date[2], date[0], date[1])
+    link = row[3]
+    full_path = os.path.join(os.getcwd(),"content/press/{}".format(create_path))
+    if not os.path.exists(full_path):
+      os.mkdir(full_path)
+      filename = "{}/contents.lr".format(full_path)
+      file_object  = open(filename, 'w')
+      file_object.write("_model: post\n")
+      file_object.write("---\n")
+      file_object.write("_hidden: yes\n")
+      file_object.write("---\n")
+      file_object.write("active: True\n")
+      file_object.write("---\n")
+      file_object.write("type: snippet\n")
+      file_object.write("---\n")
+      file_object.write("publisher:  {}\n".format(publisher))
+      file_object.write("---\n")
+      file_object.write("title:  {}\n".format(title))
+      file_object.write("---\n")
+      file_object.write("link:  {}\n".format(link))
+      file_object.write("---\n")
+      file_object.write("pub_date:  {}\n".format(pub_date))
+      file_object.write("---\n")
+      file_object.write("summary: \n")
+      file_object.write("---\n")
+      file_object.write("body: \n")
+      file_object.write("---\n")
+      file_object.close()
diff --git a/content/press/11-rules-to-ensure-cyber-security-when-you-work-from-home/contents.lr b/content/press/11-rules-to-ensure-cyber-security-when-you-work-from-home/contents.lr
new file mode 100644
index 00000000..652c30d1
--- /dev/null
+++ b/content/press/11-rules-to-ensure-cyber-security-when-you-work-from-home/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Economic Times
+---
+title:  11 rules to ensure cyber security when you work from home
+---
+link:  https://economictimes.indiatimes.com/magazines/panache/tape-the-webcam-enable-firewall-11-rules-to-ensure-cyber-security-when-you-work-from-home/articleshow/75005471.cms
+---
+pub_date:  2020-4-6
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/all-the-privacy-apps-you-should-have-downloaded-in-2020/contents.lr b/content/press/all-the-privacy-apps-you-should-have-downloaded-in-2020/contents.lr
new file mode 100644
index 00000000..84eb8753
--- /dev/null
+++ b/content/press/all-the-privacy-apps-you-should-have-downloaded-in-2020/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Mashable
+---
+title:  All the privacy apps you should have downloaded in 2020
+---
+link:  https://mashable.com/article/best-privacy-apps-ios-iphone-android/
+---
+pub_date:  2020-12-18
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/an-indepth-guide-to-choosing-a-web-browser/contents.lr b/content/press/an-indepth-guide-to-choosing-a-web-browser/contents.lr
new file mode 100644
index 00000000..73f0f4d4
--- /dev/null
+++ b/content/press/an-indepth-guide-to-choosing-a-web-browser/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Freedom of the Press
+---
+title:  An in-depth guide to choosing a web browser
+---
+link:  https://freedom.press/training/-depth-guide-choosing-web-browser/
+---
+pub_date:  2020-8-19
+---
+summary: 
+---
+body: 
+---
diff --git "a/content/press/as\303\255-logramos-que-el-m\303\241s-grande-operador-de-telecomunicaciones-mexicano-dejara-de-bloquear-la-internet-segura/contents.lr" "b/content/press/as\303\255-logramos-que-el-m\303\241s-grande-operador-de-telecomunicaciones-mexicano-dejara-de-bloquear-la-internet-segura/contents.lr"
new file mode 100644
index 00000000..df58c77c
--- /dev/null
+++ "b/content/press/as\303\255-logramos-que-el-m\303\241s-grande-operador-de-telecomunicaciones-mexicano-dejara-de-bloquear-la-internet-segura/contents.lr"
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Global Voices
+---
+title:  Así logramos que el más grande operador de telecomunicaciones mexicano dejara de bloquear la internet segura
+---
+link:  https://es.globalvoices.org/2020/08/18/asi-logramos-que-el-mas-grande-operador-de-telecomunicaciones-mexicano-dejara-de-bloquear-la-internet-segura/
+---
+pub_date:  2020-8-18
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/bitcoins-next-upgrade-will-support-tor-v3-addresses/contents.lr b/content/press/bitcoins-next-upgrade-will-support-tor-v3-addresses/contents.lr
new file mode 100644
index 00000000..c8d41c8a
--- /dev/null
+++ b/content/press/bitcoins-next-upgrade-will-support-tor-v3-addresses/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Decrypt
+---
+title:  Bitcoin's Next Upgrade Will Support Tor V3 Addresses
+---
+link:  https://decrypt.co/44640/bitcoins-next-upgrade-will-support-tor-v3-addresses
+---
+pub_date:  2020-10-12
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/browsing-internet-safely-on-android-phones-becomes-easier-with-this-new-app/contents.lr b/content/press/browsing-internet-safely-on-android-phones-becomes-easier-with-this-new-app/contents.lr
new file mode 100644
index 00000000..5be826a6
--- /dev/null
+++ b/content/press/browsing-internet-safely-on-android-phones-becomes-easier-with-this-new-app/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Times of India
+---
+title:  Browsing internet 'safely' on Android phones becomes easier with this new app
+---
+link:  https://timesofindia.indiatimes.com/gadgets-news/browsing-internet-safely-on-android-phones-becomes-easier-with-this-new-app/articleshow/79013318.cms
+---
+pub_date:  2020-11-3
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/chromes-incognito-mode-wont-make-you-anonymous-but-there-are-other-options/contents.lr b/content/press/chromes-incognito-mode-wont-make-you-anonymous-but-there-are-other-options/contents.lr
new file mode 100644
index 00000000..16024cec
--- /dev/null
+++ b/content/press/chromes-incognito-mode-wont-make-you-anonymous-but-there-are-other-options/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Tech Radar
+---
+title:  Chrome's Incognito Mode won't make you anonymous, but there are other options
+---
+link:  https://www.techradar.com/news/chromes-incognito-mode-wont-make-you-anonymous-but-there-are-other-options
+---
+pub_date:  2020-6-9
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/covid19-forces-tor-project-to-lay-off-a-third-of-its-staff/contents.lr b/content/press/covid19-forces-tor-project-to-lay-off-a-third-of-its-staff/contents.lr
new file mode 100644
index 00000000..a42e833b
--- /dev/null
+++ b/content/press/covid19-forces-tor-project-to-lay-off-a-third-of-its-staff/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  siliconAngle
+---
+title:  COVID-19 forces Tor Project to lay off a third of its staff
+---
+link:  https://siliconangle.com/2020/04/19/covid-19-forces-tor-project-lay-off-third-staff/
+---
+pub_date:  2020-4-19
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/first-tor-browser-alpha-for-android-based-on-new-firefox-is-now-available/contents.lr b/content/press/first-tor-browser-alpha-for-android-based-on-new-firefox-is-now-available/contents.lr
new file mode 100644
index 00000000..704a74b0
--- /dev/null
+++ b/content/press/first-tor-browser-alpha-for-android-based-on-new-firefox-is-now-available/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  ghacks
+---
+title:  First Tor Browser Alpha for Android based on new Firefox is now available
+---
+link:  https://www.ghacks.net/2020/10/10/first-tor-browser-alpha-for-android-based-on-new-firefox-is-now-available/
+---
+pub_date:  2020-10-10
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/how-to-use-the-tor-browsers-tools-to-protect-your-privacy/contents.lr b/content/press/how-to-use-the-tor-browsers-tools-to-protect-your-privacy/contents.lr
new file mode 100644
index 00000000..45fe9594
--- /dev/null
+++ b/content/press/how-to-use-the-tor-browsers-tools-to-protect-your-privacy/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  The Verge
+---
+title:  How to use the Tor Browser’s tools to protect your privacy
+---
+link:  https://www.theverge.com/2020/2/21/21138403/tor-privacy-tools-private-network-browser-settings-security
+---
+pub_date:  2020-3-21
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/how-tor-combats-internet-censorship/contents.lr b/content/press/how-tor-combats-internet-censorship/contents.lr
new file mode 100644
index 00000000..1421c311
--- /dev/null
+++ b/content/press/how-tor-combats-internet-censorship/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Benzinga
+---
+title:  How Tor Combats Internet Censorship
+---
+link:  https://www.benzinga.com/general/20/11/18293601/how-tor-combats-internet-censorship
+---
+pub_date:  2020-10-10
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/incognito-mode-is-actually-pretty-useless/contents.lr b/content/press/incognito-mode-is-actually-pretty-useless/contents.lr
new file mode 100644
index 00000000..c86c602f
--- /dev/null
+++ b/content/press/incognito-mode-is-actually-pretty-useless/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Vice
+---
+title:  Incognito Mode' Is Actually Pretty Useless
+---
+link:  https://www.vice.com/en/article/y3gzgb/incognito-mode-is-actually-pretty-useless
+---
+pub_date:  2020-11-20
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/introducing-onion-names-for-securedrop/contents.lr b/content/press/introducing-onion-names-for-securedrop/contents.lr
new file mode 100644
index 00000000..1c0a577d
--- /dev/null
+++ b/content/press/introducing-onion-names-for-securedrop/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  SecureDrop Blog
+---
+title:  Introducing Onion Names for SecureDrop
+---
+link:  https://securedrop.org/news/introducing-onion-names-securedrop/
+---
+pub_date:  2020-10-15
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/privacy-isnt-radical/contents.lr b/content/press/privacy-isnt-radical/contents.lr
new file mode 100644
index 00000000..f999de2d
--- /dev/null
+++ b/content/press/privacy-isnt-radical/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Bitcoin Magazine
+---
+title:  Privacy Isn't Radical
+---
+link:  https://bitcoinmagazine.com/articles/privacy-isnt-radical-how-tor-supports-dissent-as-a-human-right
+---
+pub_date:  2020-3-3
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/the-motherboard-guide-to-avoiding-state-surveillance/contents.lr b/content/press/the-motherboard-guide-to-avoiding-state-surveillance/contents.lr
new file mode 100644
index 00000000..565b5bed
--- /dev/null
+++ b/content/press/the-motherboard-guide-to-avoiding-state-surveillance/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Motherboard
+---
+title:  The Motherboard Guide to Avoiding State Surveillance
+---
+link:  https://www.vice.com/en/article/a37m4g/the-motherboard-guide-to-avoiding-state-surveillance-privacy-guide
+---
+pub_date:  2020-11-27
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-and-psiphon-activity-surges-in-proteststricken-belarus/contents.lr b/content/press/tor-and-psiphon-activity-surges-in-proteststricken-belarus/contents.lr
new file mode 100644
index 00000000..e4f7caa6
--- /dev/null
+++ b/content/press/tor-and-psiphon-activity-surges-in-proteststricken-belarus/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Decrypt
+---
+title:  Tor and Psiphon activity surges in protest-stricken Belarus
+---
+link:  https://decrypt.co/38443/tor-and-psiphon-activity-surges-in-protest-stricken-belarus
+---
+pub_date:  2020-8-12
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-browser-10-released-to-sync-with-latest-firefox-esr-version/contents.lr b/content/press/tor-browser-10-released-to-sync-with-latest-firefox-esr-version/contents.lr
new file mode 100644
index 00000000..3ee49122
--- /dev/null
+++ b/content/press/tor-browser-10-released-to-sync-with-latest-firefox-esr-version/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  BleepingComputer
+---
+title:  Tor Browser 10 released to sync with latest Firefox ESR version
+---
+link:  https://www.bleepingcomputer.com/news/software/tor-browser-10-released-to-sync-with-latest-firefox-esr-version/
+---
+pub_date:  2020-9-23
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-browser-100-released-to-offer-a-more-private-web-experience/contents.lr b/content/press/tor-browser-100-released-to-offer-a-more-private-web-experience/contents.lr
new file mode 100644
index 00000000..39d3740e
--- /dev/null
+++ b/content/press/tor-browser-100-released-to-offer-a-more-private-web-experience/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  TechRadar
+---
+title:  Tor Browser 10.0 released to offer a more private web experience
+---
+link:  https://www.techradar.com/news/tor-browser-100-released-to-offer-a-more-private-web-experience
+---
+pub_date:  2020-9-25
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-browser-95-is-out-with-major-usability-improvements/contents.lr b/content/press/tor-browser-95-is-out-with-major-usability-improvements/contents.lr
new file mode 100644
index 00000000..0d174a3c
--- /dev/null
+++ b/content/press/tor-browser-95-is-out-with-major-usability-improvements/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  ghacks
+---
+title:  Tor Browser 9.5 is out with major usability improvements
+---
+link:  https://www.ghacks.net/2020/06/05/tor-browser-9-5-is-out-with-major-usability-improvements/
+---
+pub_date:  2020-6-5
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-browser-95-lets-websites-promote-their-onion-addresses/contents.lr b/content/press/tor-browser-95-lets-websites-promote-their-onion-addresses/contents.lr
new file mode 100644
index 00000000..0f0b4215
--- /dev/null
+++ b/content/press/tor-browser-95-lets-websites-promote-their-onion-addresses/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  BleepingComputer
+---
+title:  Tor Browser 9.5 lets websites promote their Onion addresses
+---
+link:  https://www.bleepingcomputer.com/news/software/tor-browser-95-lets-websites-promote-their-onion-addresses/
+---
+pub_date:  2020-6-2
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-browser-for-android-now-based-on-updated-firefox-app/contents.lr b/content/press/tor-browser-for-android-now-based-on-updated-firefox-app/contents.lr
new file mode 100644
index 00000000..a8dc7470
--- /dev/null
+++ b/content/press/tor-browser-for-android-now-based-on-updated-firefox-app/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Android Police
+---
+title:  Tor Browser for Android now based on updated Firefox app
+---
+link:  https://www.androidpolice.com/2020/11/02/tor-browser-for-android-now-based-on-updated-firefox-app/
+---
+pub_date:  2020-11-2
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-browser-for-android-receives-major-update-now-based-on-firefox/contents.lr b/content/press/tor-browser-for-android-receives-major-update-now-based-on-firefox/contents.lr
new file mode 100644
index 00000000..8ca394a9
--- /dev/null
+++ b/content/press/tor-browser-for-android-receives-major-update-now-based-on-firefox/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  SoftPedia News
+---
+title:  Tor Browser for Android Receives Major Update, Now Based on Firefox
+---
+link:  https://news.softpedia.com/news/tor-browser-for-android-receives-major-update-now-based-on-firefox-531455.shtml
+---
+pub_date:  2020-11-4
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-browser-makes-it-easier-to-visit-mainstream-websites-onion-addresses/contents.lr b/content/press/tor-browser-makes-it-easier-to-visit-mainstream-websites-onion-addresses/contents.lr
new file mode 100644
index 00000000..e52e2931
--- /dev/null
+++ b/content/press/tor-browser-makes-it-easier-to-visit-mainstream-websites-onion-addresses/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  PC Mag
+---
+title:  Tor Browser Makes it Easier to Visit Mainstream Websites' .Onion Addresses
+---
+link:  https://www.pcmag.com/news/tor-browser-makes-it-easier-to-visit-mainstream-websites-onion-addresses
+---
+pub_date:  2020-6-2
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-project-launches-membership-program-to-boost-agility-funds/contents.lr b/content/press/tor-project-launches-membership-program-to-boost-agility-funds/contents.lr
new file mode 100644
index 00000000..7919c44c
--- /dev/null
+++ b/content/press/tor-project-launches-membership-program-to-boost-agility-funds/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  CoinDesk
+---
+title:  Tor Project Launches Membership Program to Boost Agility, Funds
+---
+link:  https://www.coindesk.com/tor-onion-membership
+---
+pub_date:  2020-8-31
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-reports-20-of-individual-donations-come-via-crypto/contents.lr b/content/press/tor-reports-20-of-individual-donations-come-via-crypto/contents.lr
new file mode 100644
index 00000000..5f5e786e
--- /dev/null
+++ b/content/press/tor-reports-20-of-individual-donations-come-via-crypto/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Decrypt
+---
+title:  Tor reports 20% of individual donations come via crypto
+---
+link:  https://decrypt.co/24582/tor-project-crypto-donations-stellar
+---
+pub_date:  2020-4-5
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tor-security-everything-you-need-to-know-about-the-anonymity-network/contents.lr b/content/press/tor-security-everything-you-need-to-know-about-the-anonymity-network/contents.lr
new file mode 100644
index 00000000..118efd64
--- /dev/null
+++ b/content/press/tor-security-everything-you-need-to-know-about-the-anonymity-network/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  The Daily Swig
+---
+title:  Tor security: Everything you need to know about the anonymity network
+---
+link:  https://portswigger.net/daily-swig/tor-security-everything-you-need-to-know-about-the-anonymity-network
+---
+pub_date:  2020-6-11
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/tors-latest-release-makes-it-easier-to-find-secure-onion-services/contents.lr b/content/press/tors-latest-release-makes-it-easier-to-find-secure-onion-services/contents.lr
new file mode 100644
index 00000000..6099193a
--- /dev/null
+++ b/content/press/tors-latest-release-makes-it-easier-to-find-secure-onion-services/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  ZDNet
+---
+title:  Tor’s latest release makes it easier to find secure onion services
+---
+link:  https://www.zdnet.com/article/tors-latest-release-makes-it-easier-to-find-secure-onion-services/
+---
+pub_date:  2020-6-3
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/we-made-the-largest-mexican-telecommunications-operator-stop-blocking-secure-internet/contents.lr b/content/press/we-made-the-largest-mexican-telecommunications-operator-stop-blocking-secure-internet/contents.lr
new file mode 100644
index 00000000..3e3f50b6
--- /dev/null
+++ b/content/press/we-made-the-largest-mexican-telecommunications-operator-stop-blocking-secure-internet/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  Global Voices
+---
+title:  We made the largest Mexican telecommunications operator stop blocking secure internet
+---
+link:  https://globalvoices.org/2020/09/08/we-made-the-largest-mexican-telecommunications-operator-stop-blocking-secure-internet/
+---
+pub_date:  2020-9-8
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/what-is-tor-your-guide-to-using-the-private-browser/contents.lr b/content/press/what-is-tor-your-guide-to-using-the-private-browser/contents.lr
new file mode 100644
index 00000000..bb14f9d1
--- /dev/null
+++ b/content/press/what-is-tor-your-guide-to-using-the-private-browser/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  CNet
+---
+title:  What is Tor? Your guide to using the private browser
+---
+link:  https://www.cnet.com/how-to/what-is-tor-your-guide-to-using-the-private-browser/
+---
+pub_date:  2020-6-2
+---
+summary: 
+---
+body: 
+---
diff --git a/content/press/why-more-apps-should-integrate-tor/contents.lr b/content/press/why-more-apps-should-integrate-tor/contents.lr
new file mode 100644
index 00000000..c5b83731
--- /dev/null
+++ b/content/press/why-more-apps-should-integrate-tor/contents.lr
@@ -0,0 +1,20 @@
+_model: post
+---
+_hidden: yes
+---
+active: True
+---
+type: snippet
+---
+publisher:  ExpressVPN
+---
+title:  Why more apps should integrate Tor
+---
+link:  https://www.expressvpn.com/blog/apps-integrate-tor-dark-web-encryption/
+---
+pub_date:  2020-12-31
+---
+summary: 
+---
+body: 
+---



More information about the tor-commits mailing list