From 6b658f2a20991732d1da375201b0a87a176e58c8 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 17 Apr 2016 14:54:56 +0100 Subject: [PATCH] Document irc setup --- doc/EN/usage.org | 139 ++++++++++++++- img/xchat_setup.jpg | Bin 0 -> 23056 bytes website/EN/usage.html | 387 +++++++++++++++++++++++++++++------------- 3 files changed, 403 insertions(+), 123 deletions(-) create mode 100644 img/xchat_setup.jpg diff --git a/doc/EN/usage.org b/doc/EN/usage.org index ff723ddb..e960e026 100644 --- a/doc/EN/usage.org +++ b/doc/EN/usage.org @@ -191,22 +191,153 @@ ssh myusername@mydomain -p 2222 #+END_SRC Then select *IRC* from the menu. Irssi is automatically set up to connect to your server and route its messages through the Tor network. Some popular systems such as *Freenode* reject connections coming from Tor (as a very crude attempt to stop trolls) and so if you want to use those you can exit to the command line from the menu and then just type "irssi" to use the system without Tor. + +To connect manually: + +#+BEGIN_SRC bash +irssi +/server add -auto -ssl yourdomainname 6697 +/connect yourdomainname +/join #freedombone +/save +#+END_SRC *** XChat -If you are using the XChat client: +First install xchat and set up its configuration file. + +#+BEGIN_SRC bash +sudo apt-get install tor xchat +mkdir ~/.xchat2 +echo "# By default, XChat based IRC software, when started-up, or run for first time, +# it starts to use local network, to connect to the internet. To prevent that, +# and to force it, to use Tor proxy (a Socks5 server): +# +# /set net_proxy_host 127.0.0.1 +# /set net_proxy_port 9050 +# /set net_proxy_type 3 +# /set net_proxy_use 0 +net_proxy_host = 127.0.0.1 +net_proxy_port = 9050 +# Technical note: 3 = socks5 +net_proxy_type = 3 +# Technical note: Do not worry. 0 is not equal to "off". 0 stands for "All". +# Check yourself https://toxin.jottit.com/xchat_set_variables +net_proxy_use = 0 + +# XChat should not use the same circuit/exit server as other Tor applications. +# Otherwise activity in different applications could be correlated to the same +# pseudonym. There is a way to prevent that. +# It is called stream isolation. We use IsolateSOCKSAuth, +# see https://www.torproject.org/docs/tor-manual-dev.html.en +# The password is actually not required, but it does not hurt either. +# Will probable not hurt on Tor 0.2.2 and below. +# Works with Tor 0.2.3 and above. +# +# /set net_proxy_auth 1 +# /set net_proxy_pass = XChat +# /set net_proxy_user = XChat +# +net_proxy_auth = 1 +net_proxy_pass = XChat +net_proxy_user = XChat + +# Get rid of protocol leaks: +# a DCC session can reveal IP address, etc. identd flag can reveal your +# username which you use to login in your OS(Windows/Linux/Unix/MacOS) profile. +# To prevent those: +# +# /set dcc_auto_chat 0 +# /set dcc_auto_resume OFF +# /set dcc_auto_send 0 +# /set irc_hide_version ON +# /set identd OFF <-- NOT working on all XChat-based IRC software. +# But still highly suggested to include & use it. +# Probable not needed on UNIX, source: http://xchat.org/faq/#q21 +dcc_auto_chat = 0 +dcc_auto_resume = 0 +dcc_auto_send = 0 +irc_hide_version = 1 +identd = 0 + +# If you use your own comment instead of default values, then these data are +# posted on each channel when you do these events: JOIN, PART, QUIT, AWAY. +# So they can reveal who you actually are, when you are using same XChat +# software for multiple different nicknames. +# +# Delete everything under Settings -> Preferences -> Default Messages: +# -> Quit: +# -> Leave channel: +# -> Away: +away_reason = +irc_part_reason = +irc_quit_reason = + +# By default, XChat based IRC software uses your platform OS(Operating System)s +# login user name as your nickname, user name, real name. To prevent leaking +# that, and, to use your own choice of nickname, realname, username: +# +# ***Pseudonymous vs. anonymous IRC use.*** +# Actually IRC is pseudonymous. Your nickname might also reveal something about +# your origin, interests, etc. You can make IRC more anonymous by choosing a more +# meaningless nickname. Use the following defaults if you want to be more anonymous. +# If user, user_ and user___ are already taken, add more _ or start using user1, +# user2, user3, etc. Or if the irc network auto assigns your a nickname, i.e. +# guest532, stick with that nickname. +# +# Of course, you are free to continue using IRC in a pseudonymous manner. +# In that case, instant of user, choose your nickname. +# +# /set irc_real_name user +# /set irc_user_name user +# /set irc_nick1 user +# /set irc_nick2 user_ +# /set irc_nick3 user__ +irc_real_name = user +irc_user_name = user +irc_nick1 = user +irc_nick2 = user_ +irc_nick3 = user__ + +# Use a more common nick completion suffix: +# When you write the first few characters of a nickname followed by tab, +# it will, by XChat default, complete the nickname and ", " behind the +# nickname. The behavior is XChat specific. The " :" is more more common +# for more common clients such as mIRC. +# +# XChat -> Settings -> Preferences -> input box -> completion_suffix set to : +# +completion_suffix = : + +# Not starting the server windows at the beginning so you can check and set +# settings before connecting to any IRC networks. +gui_slist_skip = 1 +" > ~/.xchat2/xchat.conf +#+END_SRC + +Now look up the onion address for your IRC server + +#+BEGIN_SRC bash +ssh username@mydomainname -p 2222 +#+END_SRC + +Select Administrator options, then *About this system* and make a note of the onion address for IRC. Also select the *IRC Menu* and take a note of the login password. + +[[file:images/xchat_setup.jpg]] + +Run XChat. Within the network list click, *Add* and enter your domain name then click *Edit*. -Select the entry within the servers box, then enter *mydomainname/6697* and press *Enter*. +Select the entry within the servers box, then enter *ircaddress.onion/6697* and press *Enter*. Uncheck *use global user information*. Enter first and second nicknames and check *auto connect to this network on startup*. -Check *use SSL* and *accept invalid SSL certificate*. +Make sure that *use SSL* is unchecked. Encryption will be handled via the onion address itself. Enter *#freedombone* as the channel name. -Enter the password which can be found from the IRC menu of the *control panel*. +Within the *Server password* field enter the password which can be found from the IRC menu of the *control panel*. Click *close* and then *connect*. diff --git a/img/xchat_setup.jpg b/img/xchat_setup.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45d4cac9c752569d142b231166f77a270818bd03 GIT binary patch literal 23056 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 - + @@ -170,15 +170,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) @@ -190,38 +190,38 @@ for the JavaScript code in this tag. -Syncing to the Cloud +Syncing to the Cloud -Play Music +Play Music -Microblogging (GNU Social) +Microblogging (GNU Social) -Social Network +Social Network -Chat Services +Chat Services -RSS Reader +RSS Reader -Adding or removing users +Adding or removing users -
-

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:

@@ -242,9 +242,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.

@@ -297,9 +297,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:

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

-
-

Syncing to the Cloud

-
+
+

Syncing to the Cloud

+

Syncthing provides a similar capability to proprietary systems such as Dropbox, and also is well suited for use with low power single board computers. You can have one or more directories which are synchronized across your various laptops/desktops/devices, and this makes it hard for you to ever lose important files. The manner in which the synchronization is done is pretty secure, such that it would be difficult for passive adversaries (mass surveillance, "men in the middle", etc) to know what files you're sharing. Of course, you don't necessarily need to be running a server in order to use Syncthing, but if you do have a server which is always running then there's always at least one place to synchronize your files to or from.

@@ -340,9 +340,9 @@ Freedombone provides Syncthing shared directories for each user on the system, p

-
-

On a laptop

-
+
+

On a laptop

+

Install syncthing:

@@ -397,9 +397,9 @@ Now wait for a few minutes. Eventually you will see two messages appear within t

-
-

On Android

-
+
+

On Android

+

Install Syncthing and Connectbot from F-droid.

@@ -430,12 +430,12 @@ Now wait for a few minutes or more. Eventually you should receive two notificati
-
-

Play Music

-
-
-

With the DLNA service

-
+
+

Play Music

+
+
+

With the DLNA service

+

An easy way to play music on any mobile device in your home is to use the DLNA service. Copy your music into a directory called "Music" on a USB thumb drive and then insert it into from socket on the Beaglebone.

@@ -476,9 +476,9 @@ The DLNA service will only work within your local home network, and isn't remote
-
-

Microblogging (GNU Social)

-
+
+

Microblogging (GNU Social)

+

To log into your GNU Social site first obtain your username and password from the "microblogging" section of the readme file.

@@ -507,20 +507,20 @@ GNU Social has a clutter-free mobile user interface which can be accessed via a
-
-

Social Network

-
-
-

Domains

-
+
+

Social Network

+
+
+

Domains

+

Both Hubzilla and GNU Social try to obtain certificates automatically at the time of installation via Let's Encrypt. This will likely mean that in order for this to work you'll need to have obtained at least one "official" domain via a domain selling service, since Let's Encrypt mostly doesn't seem to work with free subdomains from sites such as freeDNS.

-
-

Initial install

-
+
+

Initial install

+

On first visiting your Hubzilla site you'll see the login screen. The first thing you need to do is register a new user. The first user on the system then becomes its administrator.

@@ -534,19 +534,19 @@ On first visiting your Hubzilla site you'll see the login screen. The first thin
-
-

Chat Services

-
-
-

IRC

-
+
+

Chat Services

+
+
+

IRC

+

IRC is useful for multi-user chat. The classic use case is for software development where many engineers might need to coordinate their activities, but it's also useful for meetings, parties and general socialising.

-
-

Irssi

-
+
+

Irssi

+

The easiest way to use irssi is to connect to your system, like this:

@@ -560,13 +560,162 @@ The easiest way to use irssi is to connect to your system, like this:

Then select IRC from the menu. Irssi is automatically set up to connect to your server and route its messages through the Tor network. Some popular systems such as Freenode reject connections coming from Tor (as a very crude attempt to stop trolls) and so if you want to use those you can exit to the command line from the menu and then just type "irssi" to use the system without Tor.

-
-
-
-

XChat

-
+

-If you are using the XChat client: +To connect manually: +

+ +
+ +
irssi
+/server add -auto -ssl yourdomainname 6697
+/connect yourdomainname
+/join #freedombone
+/save
+
+
+
+
+
+

XChat

+
+

+First install xchat and set up its configuration file. +

+ +
+ +
sudo apt-get install tor xchat
+mkdir ~/.xchat2
+echo "# By default, XChat based IRC software, when started-up, or run for first time,
+# it starts to use local network, to connect to the internet. To prevent that,
+# and to force it, to use Tor proxy (a Socks5 server):
+#
+# /set net_proxy_host 127.0.0.1
+# /set net_proxy_port 9050
+# /set net_proxy_type 3
+# /set net_proxy_use 0
+net_proxy_host = 127.0.0.1
+net_proxy_port = 9050
+# Technical note: 3 = socks5
+net_proxy_type = 3
+# Technical note: Do not worry. 0 is not equal to "off". 0 stands for "All".
+#                 Check yourself https://toxin.jottit.com/xchat_set_variables
+net_proxy_use = 0
+
+# XChat should not use the same circuit/exit server as other Tor applications.
+# Otherwise activity in different applications could be correlated to the same
+# pseudonym. There is a way to prevent that.
+# It is called stream isolation. We use IsolateSOCKSAuth, 
+# see https://www.torproject.org/docs/tor-manual-dev.html.en
+# The password is actually not required, but it does not hurt either.
+# Will probable not hurt on Tor 0.2.2 and below.
+# Works with Tor 0.2.3 and above.
+#
+# /set net_proxy_auth 1
+# /set net_proxy_pass = XChat
+# /set net_proxy_user = XChat
+#
+net_proxy_auth = 1
+net_proxy_pass = XChat
+net_proxy_user = XChat
+
+# Get rid of protocol leaks:
+# a DCC session can reveal IP address, etc. identd flag can reveal your
+# username which you use to login in your OS(Windows/Linux/Unix/MacOS) profile.
+# To prevent those:
+#
+# /set dcc_auto_chat 0
+# /set dcc_auto_resume OFF
+# /set dcc_auto_send 0
+# /set irc_hide_version ON
+# /set identd OFF <-- NOT working on all XChat-based IRC software.
+# But still highly suggested to include & use it.
+# Probable not needed on UNIX, source: http://xchat.org/faq/#q21 
+dcc_auto_chat = 0
+dcc_auto_resume = 0
+dcc_auto_send = 0
+irc_hide_version = 1
+identd = 0
+
+# If you use your own comment instead of default values, then these data are
+# posted on each channel when you do these events: JOIN, PART, QUIT, AWAY.
+# So they can reveal who you actually are, when you are using same XChat
+# software for multiple different nicknames.
+#
+# Delete everything under Settings -> Preferences -> Default Messages:
+# -> Quit: <Deleted everything!>
+# -> Leave channel: <Deleted everything!>
+# -> Away: <Deleted everything!>
+away_reason = 
+irc_part_reason = 
+irc_quit_reason = 
+
+# By default, XChat based IRC software uses your platform OS(Operating System)s
+# login user name as your nickname, user name, real name.  To prevent leaking
+# that, and, to use your own choice of nickname, realname, username:
+#
+# ***Pseudonymous vs. anonymous IRC use.***
+# Actually IRC is pseudonymous. Your nickname might also reveal something about
+# your origin, interests, etc. You can make IRC more anonymous by choosing a more
+# meaningless nickname. Use the following defaults if you want to be more anonymous.
+# If user, user_ and user___ are already taken, add more _ or start using user1,
+# user2, user3, etc. Or if the irc network auto assigns your a nickname, i.e.
+# guest532, stick with that nickname.
+#
+# Of course, you are free to continue using IRC in a pseudonymous manner.
+# In that case, instant of user, choose your nickname.
+#
+# /set irc_real_name user
+# /set irc_user_name user
+# /set irc_nick1 user
+# /set irc_nick2 user_
+# /set irc_nick3 user__
+irc_real_name = user
+irc_user_name = user
+irc_nick1 = user
+irc_nick2 = user_
+irc_nick3 = user__
+
+# Use a more common nick completion suffix:
+# When you write the first few characters of a nickname followed by tab,
+# it will, by XChat default, complete the nickname and ", " behind the
+# nickname. The behavior is XChat specific. The " :" is more more common
+# for more common clients such as mIRC.
+#
+# XChat -> Settings -> Preferences -> input box -> completion_suffix set to :
+#
+completion_suffix = :
+
+# Not starting the server windows at the beginning so you can check and set
+# settings before connecting to any IRC networks.
+gui_slist_skip = 1
+" > ~/.xchat2/xchat.conf
+
+
+ +

+Now look up the onion address for your IRC server +

+ +
+ +
ssh username@mydomainname -p 2222
+
+
+ +

+Select Administrator options, then About this system and make a note of the onion address for IRC. Also select the IRC Menu and take a note of the login password. +

+ + +
+

xchat_setup.jpg +

+
+ +

+Run XChat.

@@ -574,7 +723,7 @@ Within the network list click, Add and enter your domain name then click

-Select the entry within the servers box, then enter mydomainname/6697 and press Enter. +Select the entry within the servers box, then enter ircaddress.onion/6697 and press Enter.

@@ -586,7 +735,7 @@ Enter first and second nicknames and check auto connect to this network on st

-Check use SSL and accept invalid SSL certificate. +Make sure that use SSL is unchecked. Encryption will be handled via the onion address itself.

@@ -594,7 +743,7 @@ Enter #freedombone as the channel name.

-Enter the password which can be found from the IRC menu of the control panel. +Within the Server password field enter the password which can be found from the IRC menu of the control panel.

@@ -603,9 +752,9 @@ Click close and then connect.

-
-

Changing or removing the IRC password

-
+
+

Changing or removing the IRC password

+

By default the IRC server is set up to require a password for users to log in. The password is the same for all users. If you want to change or remove the password:

@@ -623,12 +772,12 @@ Select Administrator controls then IRC Menu and then change the pa
-
-

XMPP/Jabber

-
-
-

Using with Profanity

-
+
+

XMPP/Jabber

+
+
+

Using with Profanity

+

The Profanity shell based user interface and is perhaps the simplest way to use XMPP from a laptop. It's also a good way to ensure that your OTR keys are the same even when logging in from different laptops or devices, and it also means that if those devices later become compomised then there are no locally stored OTR keys to be found.

@@ -718,9 +867,9 @@ When accessed via the user control panel the client is automatically routed thro

-
-

Using with Jitsi

-
+
+

Using with Jitsi

+

Jitsi is the recommended communications client for desktop or laptop systems, since it includes the off the record (OTR) feature which provides some additional security beyond the usual SSL certificates.

@@ -750,9 +899,9 @@ You can also see this vide

-
-

Using with Ubuntu

-
+
+

Using with Ubuntu

+

The default XMPP client in Ubuntu is Empathy. Using Empathy isn't as secure as using Jitsi, since it doesn't include the off the record feature, but since it's the default it's what many users will have easy access to.

@@ -770,17 +919,17 @@ Click on Advanced and make sure that Encryption required and Ig

-
-

Using Tor Messenger

-
+ -
-

Using with Android

-
+
+

Using with Android

+

Install F-Droid

@@ -816,16 +965,16 @@ Then select Next. When chatting you can use the lock icon to encrypt your
-
-

Tox

-
+
+

Tox

+

Tox is an encrypted peer-to-peer messaging system and so should work without Freedombone. It uses a system of nodes which act as a sort of directory service allowing users to find and connect to each other. The Tox node ID on the Freedombone can be found within the README within your home directory. If you have other users connect to your node then you will be able to continue chatting even when no other nodes are available.

-
-

Using the Toxic client

-
+
+

Using the Toxic client

+

Log into your system with:

@@ -849,12 +998,12 @@ Then from the menu select Tox Chat. Tox is encrypted by default and also
-
-

VoIP (Voice chat)

-
-
-

Using with Ubuntu

-
+
+

VoIP (Voice chat)

+
+
+

Using with Ubuntu

+

Within the software center search for "mumble" and install the client then run it. Skip through the audio setup wizard.

@@ -868,9 +1017,9 @@ Click on "add new" to add a new server and enter the default domain name for the

-
-

Using with Android

-
+
+

Using with Android

+

Install F-Droid

@@ -897,24 +1046,24 @@ Selecting the server by pressing on it then connects you to the server so that y
-
-

SIP phones

-
+
+

SIP phones

+

Freedombone also supports SIP phones The username and domain is the same as for your email address, and the SIP password and extension number will appear within the README file in your home directory. Various SIP client options are available, such as CSipSimple on Android and Jitsi on desktop or laptop machines. Ideally use clients which support ZRTP, which will provide the best level of security.

-
-

About ZRTP

-
+
+

About ZRTP

+

ZRTP appears to be the current best standard to end-to-end encrypted voice calls, combining good security with simplicity of use. When the initial cryptographic negotiation between phones is done at the start of a call a short authentication string (SAS) is calculated and displayed at both ends. To check that there isn't anyone intercepting the call and acting as a man in the middle - as stingray type devices try to do - the short authentication string can be read out and verbally confirmed between the callers. If it's the same then you can be pretty confident that the call is secure.

-
-

Using with CSIPSimple

-
+
+

Using with CSIPSimple

+

Add an account. Under General Wizards choose Expert and enter the following details:

@@ -970,9 +1119,9 @@ If everything is working the account should appear in green with a status of

-
-

Using with Ring

-
+
+

Using with Ring

+

From the menu select Manage accounts.

@@ -1025,9 +1174,9 @@ Select the Security tab. Under SRTP Key Exchange select ZRTP
-
-

RSS Reader

-
+
+

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.

@@ -1071,9 +1220,9 @@ A note for the paranoid is that on mobile devices you get redirected to a differ
-
-

Adding or removing users

-
+
+

Adding or removing users

+

Log into the system with: