croc/README.md

93 lines
5.0 KiB
Markdown
Raw Normal View History

2017-10-18 03:13:08 +02:00
# croc
2017-10-17 17:21:47 +02:00
2017-10-18 16:50:20 +02:00
*Secure peer-to-peer file transfer using a TCP relay.*
2017-10-17 17:21:47 +02:00
2017-10-18 16:50:20 +02:00
This is more or less a Golang port of [@warner](https://github.com/warner's) [*magic-wormhole*](https://github.com/warner/magic-wormhole). I wrote this because I wanted to send my friend Jessie a file using *magic-wormhole*. However, Jessie doesn't like the idea of putting Python on her computer because it is a giant snake. So, nominally, this is a version of *magic-wormhole* without the dependencies that you can just double-click on your computer, even if you use Windows.
2017-10-17 17:21:47 +02:00
2017-10-18 16:50:20 +02:00
# Example
**Sender:**
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
$ croc -send croc.exe
Sending 3712016 byte file named 'croc.exe'
Code is: 4-cement-galaxy-alpha
Sending (<-[::1]:27001)..
0s [==========================================================] 100%
0s [==========================================================] 100%
0s [===========================================>--------------] 79%
0s [========================================>-----------------] 75%
File sent.
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
**Receiver:**
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
$ croc
Enter receive code: 4-cement-galaxy-alpha
Receiving file (3712016 bytes) into: croc.exe
ok? (y/n): y
0s [==========================================================] 100%
0s [==========================================================] 100%
0s [==========================================================] 100%
0s [==========================================================] 100%
Received file written to croc.exe
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
# Install
2017-10-17 17:21:47 +02:00
2017-10-18 16:50:20 +02:00
[Install Go](https://golang.org/dl/) and then:
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
go get github.com/schollz/croc
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
Or, if you are like my good friend Jessie and "*just can't even*" with programming, [download the latest release for your system](https://github.com/schollz/croc/releases/latest).
2017-10-18 03:13:08 +02:00
# Advanced usage
2017-10-18 16:50:20 +02:00
## Run your own relay
*croc* relies on a TCP relay to staple the parallel incoming and outgoing connections. The relay temporarily stores connection information and the encrypted meta information. The default uses my server, `cowyo.com`, which has no guarantees except that I guarantee to turn if off as soon as it gets abused.
2017-10-18 03:13:08 +02:00
2017-10-18 16:50:20 +02:00
I recommend you run your own relay, it is very easy. On your server, `your-server.com`, just run
2017-10-17 17:21:47 +02:00
```
2017-10-18 03:13:08 +02:00
$ croc -relay
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
Now, when you use *croc* to send and receive you should add `-server your-server.com` to use your relay server.
_Note:_ If you are behind a firewall, make sure to open up TCP ports 27001-27009.
# How does it work?
*croc* is similar to [magic-wormhole](https://github.com/warner/magic-wormhole#design) in spirit and design. Like *magic-wormhole*, *croc* generates a code phrase for you to share with your friend which allows secure end-to-end transfering of files. The similarities may diverge from here.
The code phrase is 16 random bits that are [menemonic encoded](http://web.archive.org/web/20101031205747/http://www.tothink.com/mnemonic/) plus a prepended integer to specify number of threads. This code phrase is hashed using sha256 and sent to the relay which maps that key to that connection. When the relay finds a matching key for both the receiver and the sender (i.e. they both have the same code phrase), then the sender transmits the encrypted metadata to the receiver through the relay. Then the receiver decrypts and reviews the metadata (file name, size), and chooses whether to consent to the transfer.
After the receiver consents to the transfer, the sender transmits encrypted data through the relay. The relay setups up [Go channels](https://golang.org/doc/effective_go.html?h=chan#channels) for each connection which pipes all the data incoming from that sender's connection out to the receiver's connection. After the transmission the channels are destroyed and all the connection and meta data information is wiped from the relay server.
**Encryption**
Encryption uses PBKDF2 (see [RFC2898](http://www.ietf.org/rfc/rfc2898.txt)) where the code phrase shared between the sender and receiver is used as the passphrase. For each of the two encrypted data blocks (metadata stored on relay server, and file data transmitted), a random 8-byte salt is used and a IV is generated according to [NIST Recommendation for Block ciphers, Section 8.2](http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf).
**Decryption**
On the receiver's computer, each piece of received encrypted data is written to a separate file. These files are concatenated and then decrypted. The hash of the decrypted file is then checked against the hash transmitted from the sender (part of the meta data block).
# License
MIT
# Acknowledgements
Thanks...
- ...[@warner](https://github.com/warner) for the [idea](https://github.com/warner/magic-wormhole).
- ...[@tscholl2](https://github.com/tscholl2) for the [encryption gists](https://gist.github.com/tscholl2/dc7dc15dc132ea70a98e8542fefffa28).
- ...[@skorokithakis](https://github.com/skorokithakis) for [code on proxying two connections](https://www.stavros.io/posts/proxying-two-connections-go/).