diff --git a/doc/EN/app_rss.org b/doc/EN/app_rss.org new file mode 100644 index 00000000..a2d3fa6d --- /dev/null +++ b/doc/EN/app_rss.org @@ -0,0 +1,76 @@ +#+TITLE: +#+AUTHOR: Bob Mottram +#+EMAIL: bob@freedombone.net +#+KEYWORDS: Freedombone, RSS +#+DESCRIPTION: How to use the RSS reader +#+OPTIONS: ^:nil toc:nil +#+HTML_HEAD: + +#+BEGIN_CENTER +[[file:images/logo.png]] +#+END_CENTER + +#+BEGIN_EXPORT html +
+

RSS Reader

+
+#+END_EXPORT + +The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier. + +#+BEGIN_CENTER +[[file:images/rss_reader_mobile.jpg]] +#+END_CENTER + +* Finding the onion address +See the control panel for the RSS reader onion address. + +#+BEGIN_SRC bash +ssh username@domainname -p 2222 +#+END_SRC + +Select *Administrator controls* then select the *About* screen. + +The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to. + +To set up the system open http://rss_reader_onion_address and log in with username *admin* and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the *Actions* menu and begin adding your feeds. + +* On mobile +To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox, then use the mobile onion address shown on the *About* screen of the *Administrator controls*. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off. + +#+BEGIN_QUOTE +A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked. +#+END_QUOTE +* With Emacs +If you are an Emacs user then you can also read your RSS feeds via the [[https://github.com/dk87/avandu][Avandu]] mode. + +Add the following to your configuration, changing the address and password as appropriate. + +#+begin_src emacs-lisp :tangle no +(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/" + avandu-user "admin" + avandu-password "mypassword") +#+end_src + +If you don't already have Emacs set up to route through Tor then also add the following: + +#+begin_src emacs-lisp :tangle no +(setq socks-noproxy '("localhost")) +(require 'socks) +(require 'tls) +(setq socks-server (list "Tor socks" "localhost" 9050 5)) +#+end_src + +And ensure that the Tor daemon is installed. On a debian based system: + +#+begin_src bash :tangle no +sudo apt-get install tor +#+end_src + +or on Arch/Parabola: + +#+begin_src bash :tangle no +sudo pacman -S tor +sudo systemctl enable tor +sudo systemctl start tor +#+end_src diff --git a/doc/EN/apps.org b/doc/EN/apps.org index ab93d903..85d85f51 100644 --- a/doc/EN/apps.org +++ b/doc/EN/apps.org @@ -79,6 +79,7 @@ Calendar system compatible with CalDAV and CardDAV. Manage your calendar events * tt-rss Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "/the right to read/" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox. +[[./app_rss.html][How to use it]] * Syncthing Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed. diff --git a/doc/EN/usage.org b/doc/EN/usage.org index 2e937215..468ad9e6 100644 --- a/doc/EN/usage.org +++ b/doc/EN/usage.org @@ -29,7 +29,7 @@ | [[./app_xmpp.html][XMPP/Jabber]] | | [[./app_tox.html][Tox]] | | [[./app_mumble.html][Mumble]] | -| [[RSS Reader]] | +| [[./app_rss.html][RSS Reader]] | | [[Git Projects]] | | [[Adding or removing users]] | | [[Blocking Ads]] | @@ -100,55 +100,6 @@ ssh username@address.onion -p 2222 #+END_SRC Subsequently even if dynamic DNS isn't working you may still be able to administer your system. Using the onion address also gives you some degree of protection against corporate or government metadata analysis, since it becomes more difficult to passively detect which systems are communicating. -* RSS Reader -The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier. - -[[file:images/rss_reader_mobile.jpg]] - -** Finding the onion address -See the control panel for the RSS reader onion address. - -#+BEGIN_SRC bash -ssh username@domainname -p 2222 -#+END_SRC - -Select /Administrator controls/ then select the *About* screen. - -The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to. - -To set up the system open http://rss_reader_onion_address and log in with username *admin* and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the *Actions* menu and begin adding your feeds. - -** On mobile -To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off. - -#+BEGIN_QUOTE -A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked. -#+END_QUOTE -** With Emacs -If you are an Emacs user then you can also read your RSS feeds via the [[https://github.com/dk87/avandu][Avandu]] mode. - -Add the following to your configuration, changing the address and password as appropriate. - -#+begin_src emacs-lisp :tangle no -(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/" - avandu-user "admin" - avandu-password "mypassword") -#+end_src - -If you don't already have Emacs set up to route through Tor then also add the following: - -#+begin_src emacs-lisp :tangle no -(setq socks-noproxy '("localhost")) -(require 'socks) -(require 'tls) -(setq socks-server (list "Tor socks" "localhost" 9050 5)) -#+end_src - -And ensure that the Tor daemon is installed: - -#+begin_src bash :tangle no -sudo apt-get install tor -#+end_src * Git Projects Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens. diff --git a/website/EN/app_rss.html b/website/EN/app_rss.html new file mode 100644 index 00000000..60cc8533 --- /dev/null +++ b/website/EN/app_rss.html @@ -0,0 +1,379 @@ + + + + + + + + + + + + + + + + + +
+ +
+
+
+ +
+

logo.png +

+
+
+ +
+

RSS Reader

+
+ +

+The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier. +

+ +
+ +
+

rss_reader_mobile.jpg +

+
+
+ +
+

Finding the onion address

+
+

+See the control panel for the RSS reader onion address. +

+ +
+
ssh username@domainname -p 2222
+
+
+ +

+Select Administrator controls then select the About screen. +

+ +

+The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to. +

+ +

+To set up the system open http://rss_reader_onion_address and log in with username admin and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the Actions menu and begin adding your feeds. +

+
+
+ +
+

On mobile

+
+

+To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox, then use the mobile onion address shown on the About screen of the Administrator controls. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off. +

+ +
+

+A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked. +

+
+
+
+
+

With Emacs

+
+

+If you are an Emacs user then you can also read your RSS feeds via the Avandu mode. +

+ +

+Add the following to your configuration, changing the address and password as appropriate. +

+ +
+
(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/"
+      avandu-user "admin"
+      avandu-password "mypassword")
+
+
+ +

+If you don't already have Emacs set up to route through Tor then also add the following: +

+ +
+
(setq socks-noproxy '("localhost"))
+(require 'socks)
+(require 'tls)
+(setq socks-server (list "Tor socks" "localhost" 9050 5))
+
+
+ +

+And ensure that the Tor daemon is installed. On a debian based system: +

+ +
+
sudo apt-get install tor
+
+
+ +

+or on Arch/Parabola: +

+ +
+
sudo pacman -S tor
+sudo systemctl enable tor
+sudo systemctl start tor
+
+
+
+
+
+
+ + + +
+Back to top | E-mail me +
+
+ + diff --git a/website/EN/apps.html b/website/EN/apps.html index 51e8c58f..1ec8ad17 100644 --- a/website/EN/apps.html +++ b/website/EN/apps.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + @@ -257,9 +257,9 @@ The base install of the system just contains an email server and Mutt client, bu -
-

DLNA

-
+
+

DLNA

+

Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.

@@ -269,45 +269,45 @@ Enables you to use the system as a music server which any DLNA compatible device

-
-

Dokuwiki

-
+
+

Dokuwiki

+

A databaseless wiki system.

-
-

Emacs

-
+
+

Emacs

+

If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.

-
-

Etherpad

-
+
+

Etherpad

+

Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.

-
-

Ghost

-
+
+

Ghost

+

Modern looking blogging system.

-
-

GNU Social

-
+
+

GNU Social

+

Federated social network. You can "remote follow" other users within the GNU Social federation.

@@ -317,27 +317,27 @@ Federated social network. You can "remote follow" other users within the

-
-

Gogs

-
+
+

Gogs

+

Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar fork-and-pull workflow. If you can use Github then you can also use Gogs.

-
-

HTMLy

-
+
+

HTMLy

+

Databaseless blogging system. Quite simple and with a markdown-like format.

-
-

Hubzilla

-
+
+

Hubzilla

+

Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage.

@@ -347,9 +347,9 @@ Web publishing platform with social network like features and good privacy contr

-
-

IRC Server (ngirc)

-
+
+

IRC Server (ngirc)

+

Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.

@@ -359,36 +359,36 @@ Run your own IRC chat channel which can be secured with a password and accessibl

-
-

Jitsi Meet

-
+
+

Jitsi Meet

+

Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.

-
-

Lychee

-
+
+

Lychee

+

Make your photo albums available on the web.

-
-

Mailpile

-
+
+

Mailpile

+

Modern email client which supports GPG encryption.

-
-

Mumble

-
+
+

Mumble

+

The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.

@@ -398,45 +398,48 @@ The popular VoIP and text chat system. Say goodbye to old-fashioned telephony co

-
-

PI-Hole

-
+
+

PI-Hole

+

The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware.

-
-

PostActiv

-
+
+

PostActiv

+

An alternative federated social networking system compatible with GNU Social. It includes some optimisations and fixes currently not available within the main GNU Social project.

-
-

Radicale

-
+
+

Radicale

+

Calendar system compatible with CalDAV and CardDAV. Manage your calendar events easily across all your devices.

-
-

tt-rss

-
+
+

tt-rss

+

Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "the right to read" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.

-
-
-
-

Syncthing

- +
+
+

Syncthing

+

Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.

@@ -446,9 +449,9 @@ Possibly the best way to synchronise files across all of your devices. Once it h

-
-

Tox

-
+
+

Tox

+

Client and bootstrap node for the Tox chat/VoIP system.

@@ -458,18 +461,18 @@ Client and bootstrap node for the Tox chat/VoIP system.

-
-

Vim

-
+
+

Vim

+

If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.

-
-

XMPP

-
+
+

XMPP

+

Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as client state notification to save battery power on your mobile devices, support for seamless roaming between networks and message carbons so that you can receive the same messages while being simultaneously logged in to your account on more than one device.

diff --git a/website/EN/usage.html b/website/EN/usage.html index b80da9dc..8cda914b 100644 --- a/website/EN/usage.html +++ b/website/EN/usage.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + @@ -255,15 +255,15 @@ for the JavaScript code in this tag. -Readme +Readme -Improving ssh security +Improving ssh security -Administrating the system via an onion address (Tor) +Administrating the system via an onion address (Tor) @@ -307,26 +307,26 @@ for the JavaScript code in this tag. -RSS Reader +RSS Reader -Git Projects +Git Projects -Adding or removing users +Adding or removing users -Blocking Ads +Blocking Ads -
-

Readme

-
+
+

Readme

+

After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands:

@@ -346,9 +346,9 @@ To exit you can either just close the terminal or use CTRL-x CTRL-c follo

-
-

Improving ssh security

-
+
+

Improving ssh security

+

To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.

@@ -398,9 +398,9 @@ If you wish to only use ssh keys then log in to the Freedombone, become the root
-
-

Administrating the system via an onion address (Tor)

-
+
+

Administrating the system via an onion address (Tor)

+

You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following:

@@ -442,104 +442,9 @@ Subsequently even if dynamic DNS isn't working you may still be able to administ

-
-

RSS Reader

-
-

-The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier. -

- - -
-

rss_reader_mobile.jpg -

-
-
- -
-

Finding the onion address

-
-

-See the control panel for the RSS reader onion address. -

- -
-
ssh username@domainname -p 2222
-
-
- -

-Select Administrator controls then select the About screen. -

- -

-The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to. -

- -

-To set up the system open http://rss_reader_onion_address and log in with username admin and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the Actions menu and begin adding your feeds. -

-
-
- -
-

On mobile

-
-

-To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off. -

- -
-

-A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked. -

-
-
-
-
-

With Emacs

-
-

-If you are an Emacs user then you can also read your RSS feeds via the Avandu mode. -

- -

-Add the following to your configuration, changing the address and password as appropriate. -

- -
-
(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/"
-      avandu-user "admin"
-      avandu-password "mypassword")
-
-
- -

-If you don't already have Emacs set up to route through Tor then also add the following: -

- -
-
(setq socks-noproxy '("localhost"))
-(require 'socks)
-(require 'tls)
-(setq socks-server (list "Tor socks" "localhost" 9050 5))
-
-
- -

-And ensure that the Tor daemon is installed: -

- -
-
sudo apt-get install tor
-
-
-
-
-
-
-

Git Projects

-
+
+

Git Projects

+

Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.

@@ -575,9 +480,9 @@ This will stop any spam accounts being created by random strangers or bots. You

-
-

Adding or removing users

-
+
+

Adding or removing users

+

Log into the system with:

@@ -605,9 +510,9 @@ control
-
-

Blocking Ads

-
+
+

Blocking Ads

+

Everyone except for advertisers hates adverts. Not only are they annoying, but they can consume a lot of bandwidth, be a privacy problem in terms of allowing companies to track your browsing habits and also any badly written scripts they contain may introduce exploitable security holes. Also if you're poor then adverts often make you want things that you can't have.

@@ -621,9 +526,9 @@ Also don't expect perfection. Though many ads may be blocked by this system some

-
-

Set a static IP address

-
+
+

Set a static IP address

+

Ensure that your system has a static local IP address (typically 192.168..) using the option on the control panel. You will also need to know the IP address of your internet router, which is usually 192.168.1.1 or 192.168.1.254.

@@ -634,9 +539,9 @@ When that's done select About this system from the control panel and see
-
-

On each client system within your local network

-
+
+

On each client system within your local network

+
sudo chattr -i /etc/resolv.conf
 sudo nano /etc/resolv.conf
@@ -663,9 +568,9 @@ Normally resolv.conf will be overwritten every time your reboot, but you
 
-
-

On your internet router

-
+
+

On your internet router

+

If you can access the settings on your local internet router then this is the simplest way to provide ad blocking for all devices which connect to it. Unfortunately some router models don't let you edit the DNS settings and if that's the case you might want to consider getting a different router.

@@ -675,9 +580,9 @@ Edit the DNS settings and add the IPv4 address which you got from the control pa

-
-

LibreCMC

-
+
+

LibreCMC

+

On a router running LibreCMC from the Network menu select DHCP and DNS. Enter the static IP address of your Freedombone system within DNS Forwardings, then at the bottom of the page click on Save & Apply. Any devices which connect to your router will now have ad blocking.

@@ -685,9 +590,9 @@ On a router running LibreCMC from the Network menu select DHCP and DNS
-
-

Configuring block lists

-
+
+

Configuring block lists

+

You can configure the block lists which the system uses by going to the administrator control panel, selecting App Settings then choosing pihole. You can also add any extra domain names to the whitelist if they're being wrongly blocked or to the blacklist if they're not blocked by the current lists.