The blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

109 lines
4.3 KiB

  1. ---
  2. title: Using Signal on a server
  3. description: >
  4. A guide to setting up signal on a machine to run automatic notifications.
  5. posted: !!timestamp '2019-04-08'
  6. created: !!timestamp '2019-04-08'
  7. time: 1:54 PM
  8. tags:
  9. - signal
  10. - security
  11. ---
  12. For a long while, I'd been using an email to SMS gateway to push
  13. important notifications from my server, such as SMART error messages,
  14. to my phone. After all the
  15. [NSA warrantless surveillance](https://en.wikipedia.org/wiki/NSA_warrantless_surveillance_(2001%E2%80%932007)),
  16. I made a commitment to encrypt as much of my communications as possible.
  17. When Signal came out, I adopted it because of it's strong encryption and
  18. privacy. Ever since I've been wanting to use it for notifications from
  19. my server. I finally got around to trying out the CLI version, and got
  20. it to work.
  21. The installation of the command line utility for Signal was more straight
  22. forward than I was expecting. I decided to use
  23. [signal-cli](https://github.com/AsamK/signal-cli) and I was a bit worried,
  24. as it uses Java. Java has historically been difficult to run on FreeBSD
  25. due to lack of support and draconian licensing terms. I was surprised
  26. that the packages for OpenJDK 8 were both present and just worked on my
  27. server. A simple `pkg install openjdk8` got Java up and running.
  28. One thing to note is that the package said that fdesc and proc needed to
  29. be mounted for Java to work, but I did not, and things still worked.
  30. There are likely other parts of Java that may not work w/o those mounted,
  31. but not for Signal.
  32. As I have been using OSS for a long time, I like to build things from
  33. source, so I followed the instructions at
  34. [Building signal-cli](https://github.com/AsamK/signal-cli#building) and
  35. got the command built with out any trouble.
  36. Once the command was built, the
  37. [Usage guide](https://github.com/AsamK/signal-cli#usage) provided the
  38. basics, but didn't include instructions on how to verify the safety
  39. numbers to ensure that the initial exchange was not MitM'd. There is a
  40. [man page](https://github.com/AsamK/signal-cli/blob/master/man/signal-cli.1.adoc),
  41. but it requires a2x and separate steps to build, but a little bit of
  42. digging got me the necessary steps (also, it turns out that the adoc
  43. format is a simple text format).
  44. With a bit of searching, I found the `listIdentities` and `verify`
  45. commands. There may have been another way, but because I had sent a
  46. test message, my phone was listed:
  47. ```
  48. $ signal-cli -u +XXXXXXXXXXX listIdentities
  49. +YYYYYYYYYYY: TRUSTED_UNVERIFIED Added: Sat Apr 06 18:43:15 PDT 2019 Fingerprint: ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ ZZ Safety Number: WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW
  50. ```
  51. And then I needed to use the `trust` subcommand:
  52. ```
  53. $ signal-cli -u +XXXXXXXXXXX trust -v 'WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW WWWWW' +YYYYYYYYYYY
  54. ```
  55. The hardest part of this was figuring out how to invoke the command upon
  56. reception of an email. I used an alias listed in `/etc/aliases` to forward
  57. the email to both the SMS gateway and myself. The issue with trying to
  58. invoke the command from here was that the command was run as the `mailnull`
  59. user, which of course didn't have access to my user's home directory to
  60. read the private key. After a bit of debating, I remembered I use
  61. `procmail`, and realized this was the best way to send the message.
  62. I created a symlink for the command into my user's bin directory, created
  63. a short script called `sendcell`:
  64. ```
  65. $ cat ~/bin/sendcell
  66. #!/bin/sh -
  67. ~user/bin/signal-cli -u +XXXXXXXXXXX send +YYYYYYYYYYY
  68. ```
  69. and then added a filter to my `.procmailrc` file. The filter at first
  70. looked like this:
  71. ```
  72. :0Wf
  73. * ^TO_celluser@([^@\.]*\.)*example.com
  74. | sendcell
  75. ```
  76. But after the first test, it included all the headers, including all the
  77. `Received` headers, so I updated it to use `formail` to remove all but the
  78. `From`, `Subject` and `Date` (in case the message gets significantly delayed,
  79. I can see by how much) headers:
  80. ```
  81. :0c
  82. * ^TO_celluser@([^@\.]*\.)*example.com
  83. {
  84. :0Wf
  85. | formail -k -X From: -X Subject: -X Date:
  86. :0
  87. | sendcell
  88. }
  89. ```
  90. and now I get the messages delivered to my phone securely!
  91. It is tempting to use this to be able to invoke commands on my server
  92. remotely, but there isn't much I need to do when I don't have my laptop
  93. with me.